os/graphics/graphicstools/gdi_tools/bmconv/BMTOPBM.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "BMCONV.H"
sl@0
    17
sl@0
    18
BitmapLoader::BitmapLoader():
sl@0
    19
	iNumBmpColors(0),
sl@0
    20
	iBmpColors(NULL),
sl@0
    21
	iBmpBits(NULL),
sl@0
    22
	iAlphaBits(NULL)
sl@0
    23
	{}
sl@0
    24
sl@0
    25
BitmapLoader::~BitmapLoader()
sl@0
    26
	{
sl@0
    27
	delete [] iBmpColors;
sl@0
    28
	delete [] iBmpBits;
sl@0
    29
	delete [] iAlphaBits;
sl@0
    30
	}
sl@0
    31
sl@0
    32
int BitmapLoader::LoadBitmap(char* aFileName,int aBpp,TBitmapColor aColor,SEpocBitmapHeader*& aPbm)
sl@0
    33
	{
sl@0
    34
	char sig[2];
sl@0
    35
sl@0
    36
#if defined(__MSVCDOTNET__) || defined(__LINUX__) || defined(__TOOLS2__)
sl@0
    37
	fstream file(aFileName, ios::in | ios::binary);
sl@0
    38
#else //!__MSVCDOTNET__
sl@0
    39
	fstream file(aFileName, ios::in | ios::binary | ios::nocreate);
sl@0
    40
#endif //__MSVCDOTNET__
sl@0
    41
sl@0
    42
	if (file.is_open()==0)
sl@0
    43
		return Files;
sl@0
    44
	file.read(sig,2);
sl@0
    45
	file.close();
sl@0
    46
	if (file.gcount()!=2)
sl@0
    47
		return SourceFile ;
sl@0
    48
	if (sig[0]!='B'||sig[1]!='M')
sl@0
    49
		return SourceFile;
sl@0
    50
sl@0
    51
	int ret = DoLoad(aFileName);
sl@0
    52
	if (!ret && aColor==EColorBitmapAlpha)
sl@0
    53
		{
sl@0
    54
		int fileNameLen = strlen(aFileName);
sl@0
    55
		char* alphaFileName = new char[fileNameLen + 7];// -alpha suffix is 6 chars, plus NUL termination
sl@0
    56
		if (alphaFileName == NULL)
sl@0
    57
			return NoMemory;
sl@0
    58
		int dotPos = -1;
sl@0
    59
		for (int i = 0; i < fileNameLen; ++i)
sl@0
    60
			if (aFileName[i]=='.')
sl@0
    61
				dotPos=i;
sl@0
    62
		int prefixLen = (dotPos>=0?dotPos:fileNameLen);
sl@0
    63
		memcpy(alphaFileName,aFileName,prefixLen);
sl@0
    64
		const char* suffix = "-alpha";
sl@0
    65
		memcpy(alphaFileName+prefixLen,suffix,6);
sl@0
    66
		if (dotPos>=0)
sl@0
    67
			memcpy(alphaFileName+prefixLen+6,aFileName+dotPos,fileNameLen-dotPos);
sl@0
    68
		*(alphaFileName + fileNameLen + 6) = '\0';
sl@0
    69
		ret = DoLoadAlpha(alphaFileName); // overlay alpha data from separate file
sl@0
    70
		delete [] alphaFileName;
sl@0
    71
		}
sl@0
    72
	if (!ret)
sl@0
    73
		ret = DoConvert(aBpp,aColor,aPbm);
sl@0
    74
	return ret;
sl@0
    75
	}
sl@0
    76
sl@0
    77
int BitmapLoader::DoLoad(char* aFileName)
sl@0
    78
	{
sl@0
    79
#if defined(__MSVCDOTNET__) || defined(__TOOLS2__)
sl@0
    80
	fstream file(aFileName, ios::in | ios::binary);
sl@0
    81
#else //!__MSVCDOTNET__
sl@0
    82
	fstream file(aFileName, ios::in | ios::binary | ios::nocreate);
sl@0
    83
#endif //__MSVCDOTNET__
sl@0
    84
	if (file.is_open()==0)
sl@0
    85
		return Files;
sl@0
    86
	TBitmapFileHeader bmpfile;
sl@0
    87
	long size=sizeof(TBitmapFileHeader);
sl@0
    88
	file.read((char *)&bmpfile,size);
sl@0
    89
	if (file.gcount()!=size)
sl@0
    90
		return SourceFile;
sl@0
    91
	size=sizeof(TBitmapInfoHeader);
sl@0
    92
	file.read((char *)&iBmpHeader,size);
sl@0
    93
	if (file.gcount()!=size)
sl@0
    94
		return SourceFile;
sl@0
    95
	if (iBmpHeader.biCompression != 0)
sl@0
    96
		return UnknownCompression;
sl@0
    97
	size=bmpfile.bfSize-sizeof(TBitmapInfoHeader)-sizeof(TBitmapFileHeader);
sl@0
    98
	long bitcount=iBmpHeader.biBitCount;
sl@0
    99
	long colors=iBmpHeader.biClrUsed;
sl@0
   100
	if (colors==0)
sl@0
   101
		{
sl@0
   102
		if (bitcount==24)
sl@0
   103
			iNumBmpColors=0;
sl@0
   104
		else if (bitcount==32)
sl@0
   105
			iNumBmpColors=0;//See MSDN - BITMAPFILEHEADER and BITMAPINFOHEADER structures.
sl@0
   106
                            //If biCompression is 0 - we don't have TRgbQuad array! 
sl@0
   107
		else
sl@0
   108
			iNumBmpColors=1<<bitcount;
sl@0
   109
		}
sl@0
   110
	else
sl@0
   111
		iNumBmpColors=colors;
sl@0
   112
	if (iNumBmpColors > 256)
sl@0
   113
		return SourceFile;
sl@0
   114
	if (iNumBmpColors>0)
sl@0
   115
		{
sl@0
   116
		iBmpColors = new TRgbQuad[iNumBmpColors];
sl@0
   117
		if (iBmpColors == NULL)
sl@0
   118
			return NoMemory;
sl@0
   119
		memset(iBmpColors,0,iNumBmpColors*sizeof(TRgbQuad));
sl@0
   120
		}
sl@0
   121
	size-=iNumBmpColors*sizeof(TRgbQuad);
sl@0
   122
	iBmpBits = new char[size];
sl@0
   123
	if (iBmpBits == NULL)
sl@0
   124
		return NoMemory;
sl@0
   125
	memset(iBmpBits,0xff,size);
sl@0
   126
	// DEF102183: Graphics tools fail to run after building with MS VC8.
sl@0
   127
	if(iBmpColors != NULL)
sl@0
   128
	    {
sl@0
   129
		file.read((char *)iBmpColors,iNumBmpColors*sizeof(TRgbQuad));
sl@0
   130
		if (file.gcount()!=(int)(iNumBmpColors*sizeof(TRgbQuad)))
sl@0
   131
			return SourceFile;
sl@0
   132
	    }
sl@0
   133
	file.read(iBmpBits,size);
sl@0
   134
	file.close();
sl@0
   135
	if (file.gcount()!=size)
sl@0
   136
		return SourceFile;
sl@0
   137
	return NoError;
sl@0
   138
	}
sl@0
   139
sl@0
   140
int BitmapLoader::DoLoadAlpha(char* aAlphaFileName)
sl@0
   141
	{
sl@0
   142
#if defined(__MSVCDOTNET__) || defined(__TOOLS2__)
sl@0
   143
	fstream file(aAlphaFileName, ios::in | ios::binary);
sl@0
   144
#else //!__MSVCDOTNET__
sl@0
   145
	fstream file(aAlphaFileName, ios::in | ios::binary | ios::nocreate);
sl@0
   146
#endif //__MSVCDOTNET__
sl@0
   147
	if (file.is_open()==0)
sl@0
   148
		return AlphaFiles;
sl@0
   149
	TBitmapFileHeader alphaBmpfile;
sl@0
   150
	long size=sizeof(TBitmapFileHeader);
sl@0
   151
	file.read((char *)&alphaBmpfile,size);
sl@0
   152
	if (file.gcount()!=size)
sl@0
   153
		return SourceFile;
sl@0
   154
	size=sizeof(TBitmapInfoHeader);
sl@0
   155
	TBitmapInfoHeader alphaBmpInfo;
sl@0
   156
	file.read((char *)&alphaBmpInfo,size);
sl@0
   157
	if (file.gcount()!=size)
sl@0
   158
		return SourceFile;
sl@0
   159
	if (alphaBmpInfo.biCompression != 0)
sl@0
   160
		return UnknownCompression;
sl@0
   161
	if (alphaBmpInfo.biWidth != iBmpHeader.biWidth || alphaBmpInfo.biHeight != iBmpHeader.biHeight)
sl@0
   162
		return AlphaDimensions;
sl@0
   163
	if (alphaBmpInfo.biBitCount != 8)
sl@0
   164
		return AlphaBpp;
sl@0
   165
	size=alphaBmpfile.bfSize-sizeof(TBitmapInfoHeader)-sizeof(TBitmapFileHeader);
sl@0
   166
	long numBmpColors=alphaBmpInfo.biClrUsed;
sl@0
   167
	if (numBmpColors == 0)
sl@0
   168
		numBmpColors = 256;
sl@0
   169
	if (numBmpColors != 256)
sl@0
   170
		return SourceFile;
sl@0
   171
	size-=numBmpColors*sizeof(TRgbQuad);
sl@0
   172
	iAlphaBits = new char[size];
sl@0
   173
	if (iAlphaBits == NULL)
sl@0
   174
		{
sl@0
   175
		return NoMemory;
sl@0
   176
		}
sl@0
   177
	memset(iAlphaBits,0xff,size);
sl@0
   178
	char* bmpColors = new char[numBmpColors*sizeof(TRgbQuad)];
sl@0
   179
	file.read((char *)bmpColors,numBmpColors*sizeof(TRgbQuad));
sl@0
   180
	delete [] bmpColors; // we aren't interested in the palette data for the 8bpp grayscale alpha bmp
sl@0
   181
	if (file.gcount()!=(int)(numBmpColors*sizeof(TRgbQuad)))
sl@0
   182
		return SourceFile;
sl@0
   183
	file.read(iAlphaBits,size);
sl@0
   184
	file.close();
sl@0
   185
	if (file.gcount()!=size)
sl@0
   186
		return SourceFile;
sl@0
   187
	return NoError;
sl@0
   188
	}
sl@0
   189
sl@0
   190
TRgb BitmapLoader::GetBmpPixel(long aXCoord,long aYCoord)
sl@0
   191
	{
sl@0
   192
	TRgb darkgray(128,128,128);
sl@0
   193
	TRgb darkgrayex(127,127,127);
sl@0
   194
	TRgb lightgray(192,192,192);
sl@0
   195
	TRgb lightgrayex(187,187,187);
sl@0
   196
	unsigned char col;
sl@0
   197
	TRgb color;
sl@0
   198
sl@0
   199
	switch(iBmpHeader.biBitCount)
sl@0
   200
		{
sl@0
   201
		case 1:
sl@0
   202
			col=iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*(((iBmpHeader.biWidth+31)>>5)<<2)+(aXCoord>>3)];
sl@0
   203
			col&=(0x80>>(aXCoord%8));
sl@0
   204
			if (iBmpColors)
sl@0
   205
				{
sl@0
   206
				TRgbQuad rgbq;
sl@0
   207
				if (col)
sl@0
   208
					rgbq = iBmpColors[1];
sl@0
   209
				else
sl@0
   210
					rgbq = iBmpColors[0];
sl@0
   211
				color = TRgb(rgbq.iRed,rgbq.iGreen,rgbq.iBlue);
sl@0
   212
				}
sl@0
   213
			else
sl@0
   214
				{
sl@0
   215
				if (col)
sl@0
   216
					color = TRgb(0x00ffffff);
sl@0
   217
				else
sl@0
   218
					color = TRgb(0);
sl@0
   219
				}
sl@0
   220
			break;
sl@0
   221
		case 4:
sl@0
   222
			col=iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*(((iBmpHeader.biWidth+7)>>3)<<2)+(aXCoord>>1)];
sl@0
   223
			if (aXCoord%2==0)
sl@0
   224
				col=(unsigned char)(col>>4);
sl@0
   225
			col&=0x0f;
sl@0
   226
			if (iBmpColors)
sl@0
   227
				{
sl@0
   228
				TRgbQuad rgbq = iBmpColors[col];
sl@0
   229
				color = TRgb(rgbq.iRed,rgbq.iGreen,rgbq.iBlue);
sl@0
   230
				}
sl@0
   231
			else
sl@0
   232
				{
sl@0
   233
				col *= 17;
sl@0
   234
				color = TRgb(col,col,col);
sl@0
   235
				}
sl@0
   236
			break;
sl@0
   237
		case 8:
sl@0
   238
			col=iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*((iBmpHeader.biWidth+3)&~3)+aXCoord];
sl@0
   239
			if (iBmpColors)
sl@0
   240
				{
sl@0
   241
				TRgbQuad rgbq = iBmpColors[col];
sl@0
   242
				color = TRgb(rgbq.iRed,rgbq.iGreen,rgbq.iBlue);
sl@0
   243
				}
sl@0
   244
			else
sl@0
   245
				color = TRgb(col,col,col);
sl@0
   246
			break;
sl@0
   247
		case 16:
sl@0
   248
			{
sl@0
   249
			unsigned short int* wordptr = (unsigned short int*)&iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*(((iBmpHeader.biWidth+1)&~1)<<1)+(aXCoord<<1)];
sl@0
   250
			color = TRgb((*wordptr&0x7c)>>10,(*wordptr&0x3e)>>5,(*wordptr&0x1f));
sl@0
   251
			}
sl@0
   252
			break;
sl@0
   253
		case 24:
sl@0
   254
			{
sl@0
   255
			TRgbTriple rgbcol = *((TRgbTriple *)&(iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*((3*iBmpHeader.biWidth+3)&~3)+aXCoord+(aXCoord<<1)]));
sl@0
   256
			color = TRgb(rgbcol.rgbtRed,rgbcol.rgbtGreen,rgbcol.rgbtBlue);
sl@0
   257
			}
sl@0
   258
			break;
sl@0
   259
		case 32:
sl@0
   260
			{
sl@0
   261
			unsigned long int* dwordptr = (unsigned long int*)&iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*((iBmpHeader.biWidth)<<2)+(aXCoord<<2)];
sl@0
   262
			color = TRgb((*dwordptr&0xff0000)>>16,(*dwordptr&0xff00)>>8,*dwordptr&0xff);
sl@0
   263
			}
sl@0
   264
			break;
sl@0
   265
		default:
sl@0
   266
			break;
sl@0
   267
		}
sl@0
   268
	if (color == darkgray)
sl@0
   269
		color = darkgrayex;
sl@0
   270
	else if (color == lightgray)
sl@0
   271
		color = lightgrayex;
sl@0
   272
	return color;
sl@0
   273
	}
sl@0
   274
sl@0
   275
unsigned char BitmapLoader::GetAlphaPixel(long aXCoord,long aYCoord)
sl@0
   276
	{
sl@0
   277
	return iAlphaBits[(iBmpHeader.biHeight-aYCoord-1)*((iBmpHeader.biWidth+3)&~3)+aXCoord];
sl@0
   278
	}
sl@0
   279
sl@0
   280
int BitmapLoader::DoConvert(int aBpp,TBitmapColor aColor,SEpocBitmapHeader*& aPbm)
sl@0
   281
	{
sl@0
   282
	bool useAlpha = (aColor==EColorBitmapAlpha || aColor==EColorBitmapAlphaPM);
sl@0
   283
	long desttwipswidth = 0;
sl@0
   284
	long desttwipsheight = 0;
sl@0
   285
sl@0
   286
	long bytewidth = BitmapUtils::ByteWidth(iBmpHeader.biWidth,aBpp);
sl@0
   287
	long destlength = iBmpHeader.biHeight * bytewidth;
sl@0
   288
sl@0
   289
	if (iBmpHeader.biXPelsPerMeter>0)
sl@0
   290
		desttwipswidth = iBmpHeader.biWidth*1440000/254/iBmpHeader.biXPelsPerMeter;
sl@0
   291
	if (iBmpHeader.biYPelsPerMeter>0)
sl@0
   292
		desttwipsheight = iBmpHeader.biHeight*1440000/254/iBmpHeader.biYPelsPerMeter;
sl@0
   293
sl@0
   294
	aPbm = (SEpocBitmapHeader*)new char[sizeof(SEpocBitmapHeader) + destlength];
sl@0
   295
	if (aPbm == NULL)
sl@0
   296
		return NoMemory;
sl@0
   297
	memset(aPbm,0,sizeof(SEpocBitmapHeader));
sl@0
   298
sl@0
   299
	// aBitmap->iByteWidth = bytewidth;
sl@0
   300
	// aBitmap->iDataOffset = sizeof(Bitmap);
sl@0
   301
sl@0
   302
	aPbm->iBitmapSize = sizeof(SEpocBitmapHeader) + destlength;
sl@0
   303
	aPbm->iStructSize = sizeof(SEpocBitmapHeader);
sl@0
   304
	aPbm->iWidthInPixels = iBmpHeader.biWidth;
sl@0
   305
	aPbm->iHeightInPixels = iBmpHeader.biHeight;
sl@0
   306
	aPbm->iWidthInTwips = desttwipswidth;
sl@0
   307
	aPbm->iHeightInTwips = desttwipsheight;
sl@0
   308
	aPbm->iBitsPerPixel = aBpp;
sl@0
   309
	aPbm->iColor = aColor;
sl@0
   310
	aPbm->iPaletteEntries = 0;
sl@0
   311
	aPbm->iCompression = ENoBitmapCompression;
sl@0
   312
sl@0
   313
	char* pbmBits = ((char*)aPbm) + sizeof(SEpocBitmapHeader);
sl@0
   314
	memset(pbmBits,0xff,destlength);
sl@0
   315
sl@0
   316
	long col = 0;
sl@0
   317
	char* pixadd = 0;
sl@0
   318
sl@0
   319
	switch(aBpp)
sl@0
   320
		{
sl@0
   321
	case 1:
sl@0
   322
		{
sl@0
   323
		for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
sl@0
   324
			for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
sl@0
   325
				{
sl@0
   326
				TRgb color=GetBmpPixel(xcrd,ycrd);
sl@0
   327
				col=color.Gray2();
sl@0
   328
				pixadd=&(pbmBits[ycrd*bytewidth+(xcrd>>3)]);
sl@0
   329
				(*pixadd)&=~(1<<((xcrd&7)));
sl@0
   330
				(*pixadd)|=(unsigned char)(col<<(xcrd&7));
sl@0
   331
				}
sl@0
   332
		}
sl@0
   333
		break;
sl@0
   334
	case 2:
sl@0
   335
		{
sl@0
   336
		for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
sl@0
   337
			for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
sl@0
   338
				{
sl@0
   339
				TRgb color=GetBmpPixel(xcrd,ycrd);
sl@0
   340
				col=color.Gray4();
sl@0
   341
				pixadd=&(pbmBits[ycrd*bytewidth+(xcrd>>2)]);
sl@0
   342
				(*pixadd)&=~(0x3<<(2*(xcrd%4)));
sl@0
   343
				(*pixadd)|=(unsigned char)(col<<(2*(xcrd%4)));
sl@0
   344
				}
sl@0
   345
		}
sl@0
   346
		break;
sl@0
   347
	case 4:
sl@0
   348
		{
sl@0
   349
		for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
sl@0
   350
			for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
sl@0
   351
				{
sl@0
   352
				TRgb color=GetBmpPixel(xcrd,ycrd);
sl@0
   353
				if (aColor == EMonochromeBitmap)
sl@0
   354
					col = color.Gray16();
sl@0
   355
				else
sl@0
   356
					col = color.Color16();
sl@0
   357
				pixadd=&(pbmBits[ycrd*bytewidth+(xcrd>>1)]);
sl@0
   358
				if (xcrd%2!=0)
sl@0
   359
					*pixadd=(unsigned char)((unsigned char)((col<<4)|(*pixadd&0x0f)));
sl@0
   360
				else
sl@0
   361
					*pixadd=(unsigned char)((unsigned char)(col|(*pixadd&0xf0)));
sl@0
   362
				}
sl@0
   363
		}
sl@0
   364
		break;
sl@0
   365
	case 8:
sl@0
   366
		{
sl@0
   367
		for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
sl@0
   368
			for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
sl@0
   369
				{
sl@0
   370
				TRgb color=GetBmpPixel(xcrd,ycrd);
sl@0
   371
				if (aColor == EMonochromeBitmap)
sl@0
   372
					col = color.Gray256();
sl@0
   373
				else
sl@0
   374
					col = color.Color256();
sl@0
   375
				pixadd=&(pbmBits[ycrd*((iBmpHeader.biWidth+3)&~3)+xcrd]);
sl@0
   376
				*pixadd=(unsigned char)col;
sl@0
   377
				}
sl@0
   378
		}
sl@0
   379
		break;
sl@0
   380
	case 12:
sl@0
   381
		{
sl@0
   382
		for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
sl@0
   383
			for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
sl@0
   384
				{
sl@0
   385
				TRgb color=GetBmpPixel(xcrd,ycrd);
sl@0
   386
				col=color.Color4K();
sl@0
   387
				pixadd=&(pbmBits[ycrd*bytewidth+(xcrd<<1)]);
sl@0
   388
				unsigned short* wordadd=(unsigned short*)pixadd;
sl@0
   389
				*wordadd=(unsigned short)col;
sl@0
   390
				}
sl@0
   391
		}
sl@0
   392
		break;
sl@0
   393
	case 16:
sl@0
   394
		{
sl@0
   395
		for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
sl@0
   396
			for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
sl@0
   397
				{
sl@0
   398
				TRgb color=GetBmpPixel(xcrd,ycrd);
sl@0
   399
				col=color.Color64K();
sl@0
   400
				pixadd=&(pbmBits[ycrd*bytewidth+(xcrd<<1)]);
sl@0
   401
				unsigned short* wordadd=(unsigned short*)pixadd;
sl@0
   402
				*wordadd=(unsigned short)col;
sl@0
   403
				}
sl@0
   404
		}
sl@0
   405
		break;
sl@0
   406
	case 24:
sl@0
   407
		{
sl@0
   408
		for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
sl@0
   409
			{
sl@0
   410
			unsigned char* bytePtr = (unsigned char*)&pbmBits[ycrd*bytewidth];
sl@0
   411
			for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
sl@0
   412
				{
sl@0
   413
				TRgb col = GetBmpPixel(xcrd,ycrd);
sl@0
   414
				*bytePtr++ = (unsigned char) col.iBlue;
sl@0
   415
				*bytePtr++ = (unsigned char) col.iGreen;
sl@0
   416
				*bytePtr++ = (unsigned char) col.iRed;
sl@0
   417
				}
sl@0
   418
			}
sl@0
   419
		}
sl@0
   420
		break;
sl@0
   421
	case 32:
sl@0
   422
		{
sl@0
   423
		for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
sl@0
   424
			{
sl@0
   425
			unsigned char* bytePtr = (unsigned char*)&pbmBits[ycrd*bytewidth];
sl@0
   426
			for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
sl@0
   427
				{
sl@0
   428
				TRgb col = GetBmpPixel(xcrd,ycrd);
sl@0
   429
				unsigned char alpha = useAlpha?GetAlphaPixel(xcrd,ycrd):(unsigned char)0;
sl@0
   430
				*bytePtr++ = (unsigned char) col.iBlue;
sl@0
   431
				*bytePtr++ = (unsigned char) col.iGreen;
sl@0
   432
				*bytePtr++ = (unsigned char) col.iRed;
sl@0
   433
				*bytePtr++ = alpha;	
sl@0
   434
				}
sl@0
   435
			}
sl@0
   436
		}
sl@0
   437
		break;
sl@0
   438
		};
sl@0
   439
sl@0
   440
	return NoError;
sl@0
   441
	}
sl@0
   442