First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 BitmapLoader::BitmapLoader():
25 BitmapLoader::~BitmapLoader()
32 int BitmapLoader::LoadBitmap(char* aFileName,int aBpp,TBitmapColor aColor,SEpocBitmapHeader*& aPbm)
36 #if defined(__MSVCDOTNET__) || defined(__LINUX__) || defined(__TOOLS2__)
37 fstream file(aFileName, ios::in | ios::binary);
38 #else //!__MSVCDOTNET__
39 fstream file(aFileName, ios::in | ios::binary | ios::nocreate);
40 #endif //__MSVCDOTNET__
42 if (file.is_open()==0)
48 if (sig[0]!='B'||sig[1]!='M')
51 int ret = DoLoad(aFileName);
52 if (!ret && aColor==EColorBitmapAlpha)
54 int fileNameLen = strlen(aFileName);
55 char* alphaFileName = new char[fileNameLen + 7];// -alpha suffix is 6 chars, plus NUL termination
56 if (alphaFileName == NULL)
59 for (int i = 0; i < fileNameLen; ++i)
60 if (aFileName[i]=='.')
62 int prefixLen = (dotPos>=0?dotPos:fileNameLen);
63 memcpy(alphaFileName,aFileName,prefixLen);
64 const char* suffix = "-alpha";
65 memcpy(alphaFileName+prefixLen,suffix,6);
67 memcpy(alphaFileName+prefixLen+6,aFileName+dotPos,fileNameLen-dotPos);
68 *(alphaFileName + fileNameLen + 6) = '\0';
69 ret = DoLoadAlpha(alphaFileName); // overlay alpha data from separate file
70 delete [] alphaFileName;
73 ret = DoConvert(aBpp,aColor,aPbm);
77 int BitmapLoader::DoLoad(char* aFileName)
79 #if defined(__MSVCDOTNET__) || defined(__TOOLS2__)
80 fstream file(aFileName, ios::in | ios::binary);
81 #else //!__MSVCDOTNET__
82 fstream file(aFileName, ios::in | ios::binary | ios::nocreate);
83 #endif //__MSVCDOTNET__
84 if (file.is_open()==0)
86 TBitmapFileHeader bmpfile;
87 long size=sizeof(TBitmapFileHeader);
88 file.read((char *)&bmpfile,size);
89 if (file.gcount()!=size)
91 size=sizeof(TBitmapInfoHeader);
92 file.read((char *)&iBmpHeader,size);
93 if (file.gcount()!=size)
95 if (iBmpHeader.biCompression != 0)
96 return UnknownCompression;
97 size=bmpfile.bfSize-sizeof(TBitmapInfoHeader)-sizeof(TBitmapFileHeader);
98 long bitcount=iBmpHeader.biBitCount;
99 long colors=iBmpHeader.biClrUsed;
104 else if (bitcount==32)
105 iNumBmpColors=0;//See MSDN - BITMAPFILEHEADER and BITMAPINFOHEADER structures.
106 //If biCompression is 0 - we don't have TRgbQuad array!
108 iNumBmpColors=1<<bitcount;
111 iNumBmpColors=colors;
112 if (iNumBmpColors > 256)
116 iBmpColors = new TRgbQuad[iNumBmpColors];
117 if (iBmpColors == NULL)
119 memset(iBmpColors,0,iNumBmpColors*sizeof(TRgbQuad));
121 size-=iNumBmpColors*sizeof(TRgbQuad);
122 iBmpBits = new char[size];
123 if (iBmpBits == NULL)
125 memset(iBmpBits,0xff,size);
126 // DEF102183: Graphics tools fail to run after building with MS VC8.
127 if(iBmpColors != NULL)
129 file.read((char *)iBmpColors,iNumBmpColors*sizeof(TRgbQuad));
130 if (file.gcount()!=(int)(iNumBmpColors*sizeof(TRgbQuad)))
133 file.read(iBmpBits,size);
135 if (file.gcount()!=size)
140 int BitmapLoader::DoLoadAlpha(char* aAlphaFileName)
142 #if defined(__MSVCDOTNET__) || defined(__TOOLS2__)
143 fstream file(aAlphaFileName, ios::in | ios::binary);
144 #else //!__MSVCDOTNET__
145 fstream file(aAlphaFileName, ios::in | ios::binary | ios::nocreate);
146 #endif //__MSVCDOTNET__
147 if (file.is_open()==0)
149 TBitmapFileHeader alphaBmpfile;
150 long size=sizeof(TBitmapFileHeader);
151 file.read((char *)&alphaBmpfile,size);
152 if (file.gcount()!=size)
154 size=sizeof(TBitmapInfoHeader);
155 TBitmapInfoHeader alphaBmpInfo;
156 file.read((char *)&alphaBmpInfo,size);
157 if (file.gcount()!=size)
159 if (alphaBmpInfo.biCompression != 0)
160 return UnknownCompression;
161 if (alphaBmpInfo.biWidth != iBmpHeader.biWidth || alphaBmpInfo.biHeight != iBmpHeader.biHeight)
162 return AlphaDimensions;
163 if (alphaBmpInfo.biBitCount != 8)
165 size=alphaBmpfile.bfSize-sizeof(TBitmapInfoHeader)-sizeof(TBitmapFileHeader);
166 long numBmpColors=alphaBmpInfo.biClrUsed;
167 if (numBmpColors == 0)
169 if (numBmpColors != 256)
171 size-=numBmpColors*sizeof(TRgbQuad);
172 iAlphaBits = new char[size];
173 if (iAlphaBits == NULL)
177 memset(iAlphaBits,0xff,size);
178 char* bmpColors = new char[numBmpColors*sizeof(TRgbQuad)];
179 file.read((char *)bmpColors,numBmpColors*sizeof(TRgbQuad));
180 delete [] bmpColors; // we aren't interested in the palette data for the 8bpp grayscale alpha bmp
181 if (file.gcount()!=(int)(numBmpColors*sizeof(TRgbQuad)))
183 file.read(iAlphaBits,size);
185 if (file.gcount()!=size)
190 TRgb BitmapLoader::GetBmpPixel(long aXCoord,long aYCoord)
192 TRgb darkgray(128,128,128);
193 TRgb darkgrayex(127,127,127);
194 TRgb lightgray(192,192,192);
195 TRgb lightgrayex(187,187,187);
199 switch(iBmpHeader.biBitCount)
202 col=iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*(((iBmpHeader.biWidth+31)>>5)<<2)+(aXCoord>>3)];
203 col&=(0x80>>(aXCoord%8));
208 rgbq = iBmpColors[1];
210 rgbq = iBmpColors[0];
211 color = TRgb(rgbq.iRed,rgbq.iGreen,rgbq.iBlue);
216 color = TRgb(0x00ffffff);
222 col=iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*(((iBmpHeader.biWidth+7)>>3)<<2)+(aXCoord>>1)];
224 col=(unsigned char)(col>>4);
228 TRgbQuad rgbq = iBmpColors[col];
229 color = TRgb(rgbq.iRed,rgbq.iGreen,rgbq.iBlue);
234 color = TRgb(col,col,col);
238 col=iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*((iBmpHeader.biWidth+3)&~3)+aXCoord];
241 TRgbQuad rgbq = iBmpColors[col];
242 color = TRgb(rgbq.iRed,rgbq.iGreen,rgbq.iBlue);
245 color = TRgb(col,col,col);
249 unsigned short int* wordptr = (unsigned short int*)&iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*(((iBmpHeader.biWidth+1)&~1)<<1)+(aXCoord<<1)];
250 color = TRgb((*wordptr&0x7c)>>10,(*wordptr&0x3e)>>5,(*wordptr&0x1f));
255 TRgbTriple rgbcol = *((TRgbTriple *)&(iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*((3*iBmpHeader.biWidth+3)&~3)+aXCoord+(aXCoord<<1)]));
256 color = TRgb(rgbcol.rgbtRed,rgbcol.rgbtGreen,rgbcol.rgbtBlue);
261 unsigned long int* dwordptr = (unsigned long int*)&iBmpBits[(iBmpHeader.biHeight-aYCoord-1)*((iBmpHeader.biWidth)<<2)+(aXCoord<<2)];
262 color = TRgb((*dwordptr&0xff0000)>>16,(*dwordptr&0xff00)>>8,*dwordptr&0xff);
268 if (color == darkgray)
270 else if (color == lightgray)
275 unsigned char BitmapLoader::GetAlphaPixel(long aXCoord,long aYCoord)
277 return iAlphaBits[(iBmpHeader.biHeight-aYCoord-1)*((iBmpHeader.biWidth+3)&~3)+aXCoord];
280 int BitmapLoader::DoConvert(int aBpp,TBitmapColor aColor,SEpocBitmapHeader*& aPbm)
282 bool useAlpha = (aColor==EColorBitmapAlpha || aColor==EColorBitmapAlphaPM);
283 long desttwipswidth = 0;
284 long desttwipsheight = 0;
286 long bytewidth = BitmapUtils::ByteWidth(iBmpHeader.biWidth,aBpp);
287 long destlength = iBmpHeader.biHeight * bytewidth;
289 if (iBmpHeader.biXPelsPerMeter>0)
290 desttwipswidth = iBmpHeader.biWidth*1440000/254/iBmpHeader.biXPelsPerMeter;
291 if (iBmpHeader.biYPelsPerMeter>0)
292 desttwipsheight = iBmpHeader.biHeight*1440000/254/iBmpHeader.biYPelsPerMeter;
294 aPbm = (SEpocBitmapHeader*)new char[sizeof(SEpocBitmapHeader) + destlength];
297 memset(aPbm,0,sizeof(SEpocBitmapHeader));
299 // aBitmap->iByteWidth = bytewidth;
300 // aBitmap->iDataOffset = sizeof(Bitmap);
302 aPbm->iBitmapSize = sizeof(SEpocBitmapHeader) + destlength;
303 aPbm->iStructSize = sizeof(SEpocBitmapHeader);
304 aPbm->iWidthInPixels = iBmpHeader.biWidth;
305 aPbm->iHeightInPixels = iBmpHeader.biHeight;
306 aPbm->iWidthInTwips = desttwipswidth;
307 aPbm->iHeightInTwips = desttwipsheight;
308 aPbm->iBitsPerPixel = aBpp;
309 aPbm->iColor = aColor;
310 aPbm->iPaletteEntries = 0;
311 aPbm->iCompression = ENoBitmapCompression;
313 char* pbmBits = ((char*)aPbm) + sizeof(SEpocBitmapHeader);
314 memset(pbmBits,0xff,destlength);
323 for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
324 for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
326 TRgb color=GetBmpPixel(xcrd,ycrd);
328 pixadd=&(pbmBits[ycrd*bytewidth+(xcrd>>3)]);
329 (*pixadd)&=~(1<<((xcrd&7)));
330 (*pixadd)|=(unsigned char)(col<<(xcrd&7));
336 for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
337 for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
339 TRgb color=GetBmpPixel(xcrd,ycrd);
341 pixadd=&(pbmBits[ycrd*bytewidth+(xcrd>>2)]);
342 (*pixadd)&=~(0x3<<(2*(xcrd%4)));
343 (*pixadd)|=(unsigned char)(col<<(2*(xcrd%4)));
349 for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
350 for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
352 TRgb color=GetBmpPixel(xcrd,ycrd);
353 if (aColor == EMonochromeBitmap)
354 col = color.Gray16();
356 col = color.Color16();
357 pixadd=&(pbmBits[ycrd*bytewidth+(xcrd>>1)]);
359 *pixadd=(unsigned char)((unsigned char)((col<<4)|(*pixadd&0x0f)));
361 *pixadd=(unsigned char)((unsigned char)(col|(*pixadd&0xf0)));
367 for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
368 for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
370 TRgb color=GetBmpPixel(xcrd,ycrd);
371 if (aColor == EMonochromeBitmap)
372 col = color.Gray256();
374 col = color.Color256();
375 pixadd=&(pbmBits[ycrd*((iBmpHeader.biWidth+3)&~3)+xcrd]);
376 *pixadd=(unsigned char)col;
382 for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
383 for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
385 TRgb color=GetBmpPixel(xcrd,ycrd);
387 pixadd=&(pbmBits[ycrd*bytewidth+(xcrd<<1)]);
388 unsigned short* wordadd=(unsigned short*)pixadd;
389 *wordadd=(unsigned short)col;
395 for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
396 for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
398 TRgb color=GetBmpPixel(xcrd,ycrd);
399 col=color.Color64K();
400 pixadd=&(pbmBits[ycrd*bytewidth+(xcrd<<1)]);
401 unsigned short* wordadd=(unsigned short*)pixadd;
402 *wordadd=(unsigned short)col;
408 for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
410 unsigned char* bytePtr = (unsigned char*)&pbmBits[ycrd*bytewidth];
411 for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
413 TRgb col = GetBmpPixel(xcrd,ycrd);
414 *bytePtr++ = (unsigned char) col.iBlue;
415 *bytePtr++ = (unsigned char) col.iGreen;
416 *bytePtr++ = (unsigned char) col.iRed;
423 for(long ycrd=0;ycrd<iBmpHeader.biHeight;ycrd++)
425 unsigned char* bytePtr = (unsigned char*)&pbmBits[ycrd*bytewidth];
426 for(long xcrd=0;xcrd<iBmpHeader.biWidth;xcrd++)
428 TRgb col = GetBmpPixel(xcrd,ycrd);
429 unsigned char alpha = useAlpha?GetAlphaPixel(xcrd,ycrd):(unsigned char)0;
430 *bytePtr++ = (unsigned char) col.iBlue;
431 *bytePtr++ = (unsigned char) col.iGreen;
432 *bytePtr++ = (unsigned char) col.iRed;