www.pudn.com > mputil.rar > imageio.cpp


/* 
 * imageio.cpp 
 * 
 * Copyright (c) 2003 Machine Perception Laboratory 
 * University of California San Diego. 
 * Please read the disclaimer and notes about redistribution 
 * at the end of this file. 
 * 
 * Authors: Josh Susskind, Bret Fortenberry 
 */ 
 
#ifdef WIN32 
#include  
#endif 
#include "imageio.h" 
#include  
 
#include "../common.h" 
 
using namespace std; 
 
// ================================================================ 
 
// This is the implementation function that writes the captured video 
// data onto a bitmap on the user's disk. 
// 
int MPImageIO::WriteBitmap(unsigned char * pBuffer, long lBufferSize, int lWidth, int lHeight, char *m_szSnappedName, int bitcount) 
{ 
	int extrabytes = (4 - lWidth % 4) % 4; 
	const int size = ((lWidth+extrabytes)*lHeight)*(bitcount/8); 
	unsigned char * tempbuffer; 
	int pos = 0; 
 
	/*if width is not multple of four then extra bytes need to be added*/ 
	if(extrabytes){ 
		int pos = 0; 
		tempbuffer = new BYTE[size]; 
		for(int y=0;y(*ftemp++); 
				else *temp-- = static_cast(*ftemp++); 
			} 
		} 
	} 
 
	/*if width is not multple of four then extra bytes need to be added*/ 
	if(extrabytes){ 
		int pos = 0; 
		tempbuffer = new BYTE[size]; 
		for(int y=0;y= 0; y--){ 
			for(int x = 0; x < bmih.biWidth; x++){ 
				//is only functional if rgb(24 bit) 
				for(int p = 0; p < bmih.biBitCount/8; p++){ 
					bitPixels[pos] = tempPixArray[x+y*bmih.biWidth+p]; 
					pos++; 
				} 
			} 
		} 
	}  
	 
	delete [] tempPixArray; 
 
} 
 
// ================================================================ 
 
BITMAPINFOHEADER MPImageIO::LoadBmp(unsigned char * bitPixels, char* inFile) 
{ 
	BITMAPINFOHEADER bmih = LoadBitmapHeader(inFile); 
	LoadBitmapPixels(bitPixels, inFile, bmih); 
	return (bmih); 
} 
 
// ================================================================ 
 
/* 
 *  
 * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 
 *  
 *    1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 
 *    2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 
 *    3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. 
 *  
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 *  
 */