2 * GDI device-independent bitmaps
4 * Copyright 1993,1994 Alexandre Julliard
15 #include "debugtools.h"
18 DEFAULT_DEBUG_CHANNEL(bitmap
);
20 /***********************************************************************
21 * DIB_GetDIBWidthBytes
23 * Return the width of a DIB bitmap in bytes. DIB bitmap data is 32-bit aligned.
24 * http://www.microsoft.com/msdn/sdk/platforms/doc/sdk/win32/struc/src/str01.htm
26 int DIB_GetDIBWidthBytes( int width
, int depth
)
32 case 1: words
= (width
+ 31) / 32; break;
33 case 4: words
= (width
+ 7) / 8; break;
34 case 8: words
= (width
+ 3) / 4; break;
36 case 16: words
= (width
+ 1) / 2; break;
37 case 24: words
= (width
* 3 + 3)/4; break;
40 WARN("(%d): Unsupported depth\n", depth
);
48 /***********************************************************************
49 * DIB_GetDIBImageBytes
51 * Return the number of bytes used to hold the image in a DIB bitmap.
53 int DIB_GetDIBImageBytes( int width
, int height
, int depth
)
55 return DIB_GetDIBWidthBytes( width
, depth
) * abs( height
);
59 /***********************************************************************
62 * Return the size of the bitmap info structure including color table.
64 int DIB_BitmapInfoSize( const BITMAPINFO
* info
, WORD coloruse
)
68 if (info
->bmiHeader
.biSize
== sizeof(BITMAPCOREHEADER
))
70 BITMAPCOREHEADER
*core
= (BITMAPCOREHEADER
*)info
;
71 colors
= (core
->bcBitCount
<= 8) ? 1 << core
->bcBitCount
: 0;
72 return sizeof(BITMAPCOREHEADER
) + colors
*
73 ((coloruse
== DIB_RGB_COLORS
) ? sizeof(RGBTRIPLE
) : sizeof(WORD
));
75 else /* assume BITMAPINFOHEADER */
77 colors
= info
->bmiHeader
.biClrUsed
;
78 if (!colors
&& (info
->bmiHeader
.biBitCount
<= 8))
79 colors
= 1 << info
->bmiHeader
.biBitCount
;
80 return sizeof(BITMAPINFOHEADER
) + colors
*
81 ((coloruse
== DIB_RGB_COLORS
) ? sizeof(RGBQUAD
) : sizeof(WORD
));
86 /***********************************************************************
89 * Get the info from a bitmap header.
90 * Return 1 for INFOHEADER, 0 for COREHEADER, -1 for error.
92 int DIB_GetBitmapInfo( const BITMAPINFOHEADER
*header
, DWORD
*width
,
93 int *height
, WORD
*bpp
, WORD
*compr
)
95 if (header
->biSize
== sizeof(BITMAPINFOHEADER
))
97 *width
= header
->biWidth
;
98 *height
= header
->biHeight
;
99 *bpp
= header
->biBitCount
;
100 *compr
= header
->biCompression
;
103 if (header
->biSize
== sizeof(BITMAPCOREHEADER
))
105 BITMAPCOREHEADER
*core
= (BITMAPCOREHEADER
*)header
;
106 *width
= core
->bcWidth
;
107 *height
= core
->bcHeight
;
108 *bpp
= core
->bcBitCount
;
112 WARN("(%ld): wrong size for header\n", header
->biSize
);
117 /***********************************************************************
118 * StretchDIBits16 (GDI.439)
120 INT16 WINAPI
StretchDIBits16(HDC16 hdc
, INT16 xDst
, INT16 yDst
, INT16 widthDst
,
121 INT16 heightDst
, INT16 xSrc
, INT16 ySrc
, INT16 widthSrc
,
122 INT16 heightSrc
, const VOID
*bits
,
123 const BITMAPINFO
*info
, UINT16 wUsage
, DWORD dwRop
)
125 return (INT16
)StretchDIBits( hdc
, xDst
, yDst
, widthDst
, heightDst
,
126 xSrc
, ySrc
, widthSrc
, heightSrc
, bits
,
127 info
, wUsage
, dwRop
);
131 /***********************************************************************
132 * StretchDIBits (GDI32.@)
134 INT WINAPI
StretchDIBits(HDC hdc
, INT xDst
, INT yDst
, INT widthDst
,
135 INT heightDst
, INT xSrc
, INT ySrc
, INT widthSrc
,
136 INT heightSrc
, const void *bits
,
137 const BITMAPINFO
*info
, UINT wUsage
, DWORD dwRop
)
139 DC
*dc
= DC_GetDCUpdate( hdc
);
140 if(!dc
) return FALSE
;
142 if(dc
->funcs
->pStretchDIBits
)
143 heightSrc
= dc
->funcs
->pStretchDIBits(dc
, xDst
, yDst
, widthDst
,
144 heightDst
, xSrc
, ySrc
, widthSrc
,
145 heightSrc
, bits
, info
, wUsage
,
147 else { /* use StretchBlt */
148 HBITMAP hBitmap
, hOldBitmap
;
151 hdcMem
= CreateCompatibleDC( hdc
);
152 if (info
->bmiHeader
.biCompression
== BI_RLE4
||
153 info
->bmiHeader
.biCompression
== BI_RLE8
) {
155 /* when RLE compression is used, there may be some gaps (ie the DIB doesn't
156 * contain all the rectangle described in bmiHeader, but only part of it.
157 * This mean that those undescribed pixels must be left untouched.
158 * So, we first copy on a memory bitmap the current content of the
159 * destination rectangle, blit the DIB bits on top of it - hence leaving
160 * the gaps untouched -, and blitting the rectangle back.
161 * This insure that gaps are untouched on the destination rectangle
162 * Not doing so leads to trashed images (the gaps contain what was on the
163 * memory bitmap => generally black or garbage)
164 * Unfortunately, RLE DIBs without gaps will be slowed down. But this is
165 * another speed vs correctness issue. Anyway, if speed is needed, then the
166 * pStretchDIBits function shall be implemented.
169 hBitmap
= CreateCompatibleBitmap(hdc
, info
->bmiHeader
.biWidth
,
170 info
->bmiHeader
.biHeight
);
171 hOldBitmap
= SelectObject( hdcMem
, hBitmap
);
173 /* copy existing bitmap from destination dc */
174 StretchBlt( hdcMem
, xSrc
, abs(info
->bmiHeader
.biHeight
) - heightSrc
- ySrc
,
175 widthSrc
, heightSrc
, hdc
, xDst
, yDst
, widthDst
, heightDst
,
177 SetDIBits(hdcMem
, hBitmap
, 0, info
->bmiHeader
.biHeight
, bits
,
178 info
, DIB_RGB_COLORS
);
181 hBitmap
= CreateDIBitmap( hdc
, &info
->bmiHeader
, CBM_INIT
,
182 bits
, info
, wUsage
);
183 hOldBitmap
= SelectObject( hdcMem
, hBitmap
);
186 /* Origin for DIBitmap may be bottom left (positive biHeight) or top
187 left (negative biHeight) */
188 StretchBlt( hdc
, xDst
, yDst
, widthDst
, heightDst
,
189 hdcMem
, xSrc
, abs(info
->bmiHeader
.biHeight
) - heightSrc
- ySrc
,
190 widthSrc
, heightSrc
, dwRop
);
191 SelectObject( hdcMem
, hOldBitmap
);
193 DeleteObject( hBitmap
);
195 GDI_ReleaseObj( hdc
);
200 /***********************************************************************
201 * SetDIBits16 (GDI.440)
203 INT16 WINAPI
SetDIBits16( HDC16 hdc
, HBITMAP16 hbitmap
, UINT16 startscan
,
204 UINT16 lines
, LPCVOID bits
, const BITMAPINFO
*info
,
207 return SetDIBits( hdc
, hbitmap
, startscan
, lines
, bits
, info
, coloruse
);
211 /******************************************************************************
212 * SetDIBits [GDI32.@] Sets pixels in a bitmap using colors from DIB
215 * hdc [I] Handle to device context
216 * hbitmap [I] Handle to bitmap
217 * startscan [I] Starting scan line
218 * lines [I] Number of scan lines
219 * bits [I] Array of bitmap bits
220 * info [I] Address of structure with data
221 * coloruse [I] Type of color indexes to use
224 * Success: Number of scan lines copied
227 INT WINAPI
SetDIBits( HDC hdc
, HBITMAP hbitmap
, UINT startscan
,
228 UINT lines
, LPCVOID bits
, const BITMAPINFO
*info
,
235 /* Check parameters */
236 if (!(dc
= DC_GetDCUpdate( hdc
))) return 0;
238 if (!(bitmap
= (BITMAPOBJ
*) GDI_GetObjPtr( hbitmap
, BITMAP_MAGIC
)))
240 GDI_ReleaseObj( hdc
);
244 result
= BITMAP_Driver
->pSetDIBits(bitmap
, dc
, startscan
,
248 GDI_ReleaseObj( hbitmap
);
249 GDI_ReleaseObj( hdc
);
255 /***********************************************************************
256 * SetDIBitsToDevice16 (GDI.443)
258 INT16 WINAPI
SetDIBitsToDevice16(HDC16 hdc
, INT16 xDest
, INT16 yDest
, INT16 cx
,
259 INT16 cy
, INT16 xSrc
, INT16 ySrc
, UINT16 startscan
,
260 UINT16 lines
, LPCVOID bits
, const BITMAPINFO
*info
,
263 return SetDIBitsToDevice( hdc
, xDest
, yDest
, cx
, cy
, xSrc
, ySrc
,
264 startscan
, lines
, bits
, info
, coloruse
);
268 /***********************************************************************
269 * SetDIBitsToDevice (GDI32.@)
271 INT WINAPI
SetDIBitsToDevice(HDC hdc
, INT xDest
, INT yDest
, DWORD cx
,
272 DWORD cy
, INT xSrc
, INT ySrc
, UINT startscan
,
273 UINT lines
, LPCVOID bits
, const BITMAPINFO
*info
,
279 if (!(dc
= DC_GetDCUpdate( hdc
))) return 0;
281 if(dc
->funcs
->pSetDIBitsToDevice
)
282 ret
= dc
->funcs
->pSetDIBitsToDevice( dc
, xDest
, yDest
, cx
, cy
, xSrc
,
283 ySrc
, startscan
, lines
, bits
,
286 FIXME("unimplemented on hdc %08x\n", hdc
);
290 GDI_ReleaseObj( hdc
);
294 /***********************************************************************
295 * SetDIBColorTable16 (GDI.602)
297 UINT16 WINAPI
SetDIBColorTable16( HDC16 hdc
, UINT16 startpos
, UINT16 entries
,
300 return SetDIBColorTable( hdc
, startpos
, entries
, colors
);
303 /***********************************************************************
304 * SetDIBColorTable (GDI32.@)
306 UINT WINAPI
SetDIBColorTable( HDC hdc
, UINT startpos
, UINT entries
,
313 if (!(dc
= DC_GetDCUpdate( hdc
))) return 0;
315 if (!(bmp
= (BITMAPOBJ
*)GDI_GetObjPtr( dc
->hBitmap
, BITMAP_MAGIC
)))
317 GDI_ReleaseObj( hdc
);
321 result
= BITMAP_Driver
->pSetDIBColorTable(bmp
, dc
, startpos
, entries
, colors
);
323 GDI_ReleaseObj( dc
->hBitmap
);
324 GDI_ReleaseObj( hdc
);
328 /***********************************************************************
329 * GetDIBColorTable16 (GDI.603)
331 UINT16 WINAPI
GetDIBColorTable16( HDC16 hdc
, UINT16 startpos
, UINT16 entries
,
334 return GetDIBColorTable( hdc
, startpos
, entries
, colors
);
337 /***********************************************************************
338 * GetDIBColorTable (GDI32.@)
340 UINT WINAPI
GetDIBColorTable( HDC hdc
, UINT startpos
, UINT entries
,
347 if (!(dc
= DC_GetDCUpdate( hdc
))) return 0;
349 if (!(bmp
= (BITMAPOBJ
*)GDI_GetObjPtr( dc
->hBitmap
, BITMAP_MAGIC
)))
351 GDI_ReleaseObj( hdc
);
355 result
= BITMAP_Driver
->pGetDIBColorTable(bmp
, dc
, startpos
, entries
, colors
);
357 GDI_ReleaseObj( dc
->hBitmap
);
358 GDI_ReleaseObj( hdc
);
362 /* FIXME the following two structs should be combined with __sysPalTemplate in
363 objects/color.c - this should happen after de-X11-ing both of these
365 NB. RGBQUAD and PALETTENTRY have different orderings of red, green
368 static RGBQUAD EGAColors
[16] = {
369 /* rgbBlue, rgbGreen, rgbRed, rgbReserverd */
370 { 0x00, 0x00, 0x00, 0x00 },
371 { 0x00, 0x00, 0x80, 0x00 },
372 { 0x00, 0x80, 0x00, 0x00 },
373 { 0x00, 0x80, 0x80, 0x00 },
374 { 0x80, 0x00, 0x00, 0x00 },
375 { 0x80, 0x00, 0x80, 0x00 },
376 { 0x80, 0x80, 0x00, 0x00 },
377 { 0x80, 0x80, 0x80, 0x00 },
378 { 0xc0, 0xc0, 0xc0, 0x00 },
379 { 0x00, 0x00, 0xff, 0x00 },
380 { 0x00, 0xff, 0x00, 0x00 },
381 { 0x00, 0xff, 0xff, 0x00 },
382 { 0xff, 0x00, 0x00, 0x00 },
383 { 0xff, 0x00, 0xff, 0x00 },
384 { 0xff, 0xff, 0x00, 0x00 },
385 { 0xff, 0xff, 0xff, 0x00 }
389 static RGBQUAD DefLogPalette
[20] = { /* Copy of Default Logical Palette */
390 /* rgbBlue, rgbGreen, rgbRed, rgbReserverd */
391 { 0x00, 0x00, 0x00, 0x00 },
392 { 0x00, 0x00, 0x80, 0x00 },
393 { 0x00, 0x80, 0x00, 0x00 },
394 { 0x00, 0x80, 0x80, 0x00 },
395 { 0x80, 0x00, 0x00, 0x00 },
396 { 0x80, 0x00, 0x80, 0x00 },
397 { 0x80, 0x80, 0x00, 0x00 },
398 { 0xc0, 0xc0, 0xc0, 0x00 },
399 { 0xc0, 0xdc, 0xc0, 0x00 },
400 { 0xf0, 0xca, 0xa6, 0x00 },
401 { 0xf0, 0xfb, 0xff, 0x00 },
402 { 0xa4, 0xa0, 0xa0, 0x00 },
403 { 0x80, 0x80, 0x80, 0x00 },
404 { 0x00, 0x00, 0xf0, 0x00 },
405 { 0x00, 0xff, 0x00, 0x00 },
406 { 0x00, 0xff, 0xff, 0x00 },
407 { 0xff, 0x00, 0x00, 0x00 },
408 { 0xff, 0x00, 0xff, 0x00 },
409 { 0xff, 0xff, 0x00, 0x00 },
410 { 0xff, 0xff, 0xff, 0x00 }
413 /***********************************************************************
414 * GetDIBits16 (GDI.441)
416 INT16 WINAPI
GetDIBits16( HDC16 hdc
, HBITMAP16 hbitmap
, UINT16 startscan
,
417 UINT16 lines
, LPVOID bits
, BITMAPINFO
* info
,
420 return GetDIBits( hdc
, hbitmap
, startscan
, lines
, bits
, info
, coloruse
);
424 /******************************************************************************
425 * GetDIBits [GDI32.@] Retrieves bits of bitmap and copies to buffer
428 * Success: Number of scan lines copied from bitmap
431 * http://www.microsoft.com/msdn/sdk/platforms/doc/sdk/win32/func/src/f30_14.htm
433 INT WINAPI
GetDIBits(
434 HDC hdc
, /* [in] Handle to device context */
435 HBITMAP hbitmap
, /* [in] Handle to bitmap */
436 UINT startscan
, /* [in] First scan line to set in dest bitmap */
437 UINT lines
, /* [in] Number of scan lines to copy */
438 LPVOID bits
, /* [out] Address of array for bitmap bits */
439 BITMAPINFO
* info
, /* [out] Address of structure with bitmap data */
440 UINT coloruse
) /* [in] RGB or palette index */
444 PALETTEENTRY
* palEntry
;
445 PALETTEOBJ
* palette
;
449 if (!(dc
= DC_GetDCUpdate( hdc
))) return 0;
450 if (!(bmp
= (BITMAPOBJ
*)GDI_GetObjPtr( hbitmap
, BITMAP_MAGIC
)))
452 GDI_ReleaseObj( hdc
);
455 if (!(palette
= (PALETTEOBJ
*)GDI_GetObjPtr( dc
->hPalette
, PALETTE_MAGIC
)))
457 GDI_ReleaseObj( hdc
);
458 GDI_ReleaseObj( hbitmap
);
462 /* Transfer color info */
464 if (info
->bmiHeader
.biBitCount
<= 8 && info
->bmiHeader
.biBitCount
> 0 ) {
466 info
->bmiHeader
.biClrUsed
= 0;
468 if(info
->bmiHeader
.biBitCount
>= bmp
->bitmap
.bmBitsPixel
) {
469 palEntry
= palette
->logpalette
.palPalEntry
;
470 for (i
= 0; i
< (1 << bmp
->bitmap
.bmBitsPixel
); i
++, palEntry
++) {
471 if (coloruse
== DIB_RGB_COLORS
) {
472 info
->bmiColors
[i
].rgbRed
= palEntry
->peRed
;
473 info
->bmiColors
[i
].rgbGreen
= palEntry
->peGreen
;
474 info
->bmiColors
[i
].rgbBlue
= palEntry
->peBlue
;
475 info
->bmiColors
[i
].rgbReserved
= 0;
477 else ((WORD
*)info
->bmiColors
)[i
] = (WORD
)i
;
480 switch (info
->bmiHeader
.biBitCount
) {
482 info
->bmiColors
[0].rgbRed
= info
->bmiColors
[0].rgbGreen
=
483 info
->bmiColors
[0].rgbBlue
= 0;
484 info
->bmiColors
[0].rgbReserved
= 0;
485 info
->bmiColors
[1].rgbRed
= info
->bmiColors
[1].rgbGreen
=
486 info
->bmiColors
[1].rgbBlue
= 0xff;
487 info
->bmiColors
[1].rgbReserved
= 0;
491 memcpy(info
->bmiColors
, EGAColors
, sizeof(EGAColors
));
499 memcpy(info
->bmiColors
, DefLogPalette
,
500 10 * sizeof(RGBQUAD
));
501 memcpy(info
->bmiColors
+ 246, DefLogPalette
+ 10,
502 10 * sizeof(RGBQUAD
));
503 color
= info
->bmiColors
+ 10;
504 for(r
= 0; r
<= 5; r
++) /* FIXME */
505 for(g
= 0; g
<= 5; g
++)
506 for(b
= 0; b
<= 5; b
++) {
507 color
->rgbRed
= (r
* 0xff) / 5;
508 color
->rgbGreen
= (g
* 0xff) / 5;
509 color
->rgbBlue
= (b
* 0xff) / 5;
510 color
->rgbReserved
= 0;
518 GDI_ReleaseObj( dc
->hPalette
);
522 /* If the bitmap object already have a dib section that contains image data, get the bits from it*/
523 if(bmp
->dib
&& bmp
->dib
->dsBm
.bmBitsPixel
>= 15 && info
->bmiHeader
.biBitCount
>= 15)
525 /*FIXME: Only RGB dibs supported for now */
526 unsigned int srcwidth
= bmp
->dib
->dsBm
.bmWidth
, srcwidthb
= bmp
->dib
->dsBm
.bmWidthBytes
;
527 int dstwidthb
= DIB_GetDIBWidthBytes( info
->bmiHeader
.biWidth
, info
->bmiHeader
.biBitCount
);
528 LPBYTE dbits
= bits
, sbits
= (LPBYTE
) bmp
->dib
->dsBm
.bmBits
+ (startscan
* srcwidthb
);
531 if ((info
->bmiHeader
.biHeight
< 0) ^ (bmp
->dib
->dsBmih
.biHeight
< 0))
533 dbits
= (LPBYTE
)bits
+ (dstwidthb
* (lines
-1));
534 dstwidthb
= -dstwidthb
;
537 switch( info
->bmiHeader
.biBitCount
) {
540 case 16: /* 16 bpp dstDIB */
542 LPWORD dstbits
= (LPWORD
)dbits
;
543 WORD rmask
= 0x7c00, gmask
= 0x03e0, bmask
= 0x001f;
545 /* FIXME: BI_BITFIELDS not supported yet */
547 switch(bmp
->dib
->dsBm
.bmBitsPixel
) {
549 case 16: /* 16 bpp srcDIB -> 16 bpp dstDIB */
551 /* FIXME: BI_BITFIELDS not supported yet */
552 for (y
= 0; y
< lines
; y
++, dbits
+=dstwidthb
, sbits
+=srcwidthb
)
553 memcpy(dbits
, sbits
, srcwidthb
);
557 case 24: /* 24 bpp srcDIB -> 16 bpp dstDIB */
559 LPBYTE srcbits
= sbits
;
561 for( y
= 0; y
< lines
; y
++) {
562 for( x
= 0; x
< srcwidth
; x
++ )
563 *dstbits
++ = ((*srcbits
++ >> 3) & bmask
) |
564 (((WORD
)*srcbits
++ << 2) & gmask
) |
565 (((WORD
)*srcbits
++ << 7) & rmask
);
566 dstbits
= (LPWORD
)(dbits
+=dstwidthb
);
567 srcbits
= (sbits
+= srcwidthb
);
572 case 32: /* 32 bpp srcDIB -> 16 bpp dstDIB */
574 LPDWORD srcbits
= (LPDWORD
)sbits
;
577 for( y
= 0; y
< lines
; y
++) {
578 for( x
= 0; x
< srcwidth
; x
++ ) {
580 *dstbits
++ = (WORD
)(((val
>> 3) & bmask
) | ((val
>> 6) & gmask
) |
581 ((val
>> 9) & rmask
));
583 dstbits
= (LPWORD
)(dbits
+=dstwidthb
);
584 srcbits
= (LPDWORD
)(sbits
+=srcwidthb
);
589 default: /* ? bit bmp -> 16 bit DIB */
590 FIXME("15/16 bit DIB %d bit bitmap\n",
591 bmp
->bitmap
.bmBitsPixel
);
597 case 24: /* 24 bpp dstDIB */
599 LPBYTE dstbits
= dbits
;
601 switch(bmp
->dib
->dsBm
.bmBitsPixel
) {
603 case 16: /* 16 bpp srcDIB -> 24 bpp dstDIB */
605 LPWORD srcbits
= (LPWORD
)sbits
;
608 /* FIXME: BI_BITFIELDS not supported yet */
609 for( y
= 0; y
< lines
; y
++) {
610 for( x
= 0; x
< srcwidth
; x
++ ) {
612 *dstbits
++ = (BYTE
)(((val
<< 3) & 0xf8) | ((val
>> 2) & 0x07));
613 *dstbits
++ = (BYTE
)(((val
>> 2) & 0xf8) | ((val
>> 7) & 0x07));
614 *dstbits
++ = (BYTE
)(((val
>> 7) & 0xf8) | ((val
>> 12) & 0x07));
616 dstbits
= (LPBYTE
)(dbits
+=dstwidthb
);
617 srcbits
= (LPWORD
)(sbits
+=srcwidthb
);
622 case 24: /* 24 bpp srcDIB -> 24 bpp dstDIB */
624 for (y
= 0; y
< lines
; y
++, dbits
+=dstwidthb
, sbits
+=srcwidthb
)
625 memcpy(dbits
, sbits
, srcwidthb
);
629 case 32: /* 32 bpp srcDIB -> 24 bpp dstDIB */
631 LPBYTE srcbits
= (LPBYTE
)sbits
;
633 for( y
= 0; y
< lines
; y
++) {
634 for( x
= 0; x
< srcwidth
; x
++, srcbits
++ ) {
635 *dstbits
++ = *srcbits
++;
636 *dstbits
++ = *srcbits
++;
637 *dstbits
++ = *srcbits
++;
639 dstbits
=(LPBYTE
)(dbits
+=dstwidthb
);
640 srcbits
= (LPBYTE
)(sbits
+=srcwidthb
);
645 default: /* ? bit bmp -> 24 bit DIB */
646 FIXME("24 bit DIB %d bit bitmap\n",
647 bmp
->bitmap
.bmBitsPixel
);
653 case 32: /* 32 bpp dstDIB */
655 LPDWORD dstbits
= (LPDWORD
)dbits
;
657 /* FIXME: BI_BITFIELDS not supported yet */
659 switch(bmp
->dib
->dsBm
.bmBitsPixel
) {
660 case 16: /* 16 bpp srcDIB -> 32 bpp dstDIB */
662 LPWORD srcbits
= (LPWORD
)sbits
;
665 /* FIXME: BI_BITFIELDS not supported yet */
666 for( y
= 0; y
< lines
; y
++) {
667 for( x
= 0; x
< srcwidth
; x
++ ) {
668 val
= (DWORD
)*srcbits
++;
669 *dstbits
++ = ((val
<< 3) & 0xf8) | ((val
>> 2) & 0x07) |
670 ((val
<< 6) & 0xf800) | ((val
<< 1) & 0x0700) |
671 ((val
<< 9) & 0xf80000) | ((val
<< 4) & 0x070000);
673 dstbits
=(LPDWORD
)(dbits
+=dstwidthb
);
674 srcbits
=(LPWORD
)(sbits
+=srcwidthb
);
679 case 24: /* 24 bpp srcDIB -> 32 bpp dstDIB */
681 LPBYTE srcbits
= sbits
;
683 for( y
= 0; y
< lines
; y
++) {
684 for( x
= 0; x
< srcwidth
; x
++, srcbits
+=3 )
685 *dstbits
++ = ((DWORD
)*srcbits
) & 0x00ffffff;
686 dstbits
=(LPDWORD
)(dbits
+=dstwidthb
);
687 srcbits
=(sbits
+=srcwidthb
);
692 case 32: /* 32 bpp srcDIB -> 16 bpp dstDIB */
694 /* FIXME: BI_BITFIELDS not supported yet */
695 for (y
= 0; y
< lines
; y
++, dbits
+=dstwidthb
, sbits
+=srcwidthb
)
696 memcpy(dbits
, sbits
, srcwidthb
);
700 default: /* ? bit bmp -> 16 bit DIB */
701 FIXME("15/16 bit DIB %d bit bitmap\n",
702 bmp
->bitmap
.bmBitsPixel
);
708 default: /* ? bit DIB */
709 FIXME("Unsupported DIB depth %d\n", info
->bmiHeader
.biBitCount
);
713 /* Otherwise, get bits from the XImage */
714 else if(!BITMAP_Driver
->pGetDIBits(bmp
, dc
, startscan
, lines
, bits
, info
, coloruse
, hbitmap
))
716 GDI_ReleaseObj( hdc
);
717 GDI_ReleaseObj( hbitmap
);
722 else if( info
->bmiHeader
.biSize
>= sizeof(BITMAPINFOHEADER
) )
724 /* fill in struct members */
726 if( info
->bmiHeader
.biBitCount
== 0)
728 info
->bmiHeader
.biWidth
= bmp
->bitmap
.bmWidth
;
729 info
->bmiHeader
.biHeight
= bmp
->bitmap
.bmHeight
;
730 info
->bmiHeader
.biPlanes
= 1;
731 info
->bmiHeader
.biBitCount
= bmp
->bitmap
.bmBitsPixel
;
732 info
->bmiHeader
.biSizeImage
=
733 DIB_GetDIBImageBytes( bmp
->bitmap
.bmWidth
,
734 bmp
->bitmap
.bmHeight
,
735 bmp
->bitmap
.bmBitsPixel
);
736 info
->bmiHeader
.biCompression
= 0;
740 info
->bmiHeader
.biSizeImage
= DIB_GetDIBImageBytes(
741 info
->bmiHeader
.biWidth
,
742 info
->bmiHeader
.biHeight
,
743 info
->bmiHeader
.biBitCount
);
747 TRACE("biSizeImage = %ld, biWidth = %ld, biHeight = %ld\n",
748 info
->bmiHeader
.biSizeImage
, info
->bmiHeader
.biWidth
,
749 info
->bmiHeader
.biHeight
);
751 GDI_ReleaseObj( hdc
);
752 GDI_ReleaseObj( hbitmap
);
758 /***********************************************************************
759 * CreateDIBitmap16 (GDI.442)
760 * CreateDIBitmap16 (DISPLAY.442)
762 HBITMAP16 WINAPI
CreateDIBitmap16( HDC16 hdc
, const BITMAPINFOHEADER
* header
,
763 DWORD init
, LPCVOID bits
, const BITMAPINFO
* data
,
766 return CreateDIBitmap( hdc
, header
, init
, bits
, data
, coloruse
);
770 /***********************************************************************
771 * CreateDIBitmap (GDI32.@)
773 HBITMAP WINAPI
CreateDIBitmap( HDC hdc
, const BITMAPINFOHEADER
*header
,
774 DWORD init
, LPCVOID bits
, const BITMAPINFO
*data
,
784 if (DIB_GetBitmapInfo( header
, &width
, &height
, &bpp
, &compr
) == -1) return 0;
785 if (height
< 0) height
= -height
;
787 /* Check if we should create a monochrome or color bitmap. */
788 /* We create a monochrome bitmap only if it has exactly 2 */
789 /* colors, which are black followed by white, nothing else. */
790 /* In all other cases, we create a color bitmap. */
792 if (bpp
!= 1) fColor
= TRUE
;
793 else if ((coloruse
!= DIB_RGB_COLORS
) ||
794 (init
!= CBM_INIT
) || !data
) fColor
= FALSE
;
797 if (data
->bmiHeader
.biSize
== sizeof(BITMAPINFOHEADER
))
799 RGBQUAD
*rgb
= data
->bmiColors
;
800 DWORD col
= RGB( rgb
->rgbRed
, rgb
->rgbGreen
, rgb
->rgbBlue
);
802 /* Check if the first color of the colormap is black */
803 if ((col
== RGB(0,0,0)))
806 col
= RGB( rgb
->rgbRed
, rgb
->rgbGreen
, rgb
->rgbBlue
);
807 /* If the second color is white, create a monochrome bitmap */
808 fColor
= (col
!= RGB(0xff,0xff,0xff));
810 /* Note : If the first color of the colormap is white
811 followed by black, we have to create a color bitmap.
812 If we don't the white will be displayed in black later on!*/
815 else if (data
->bmiHeader
.biSize
== sizeof(BITMAPCOREHEADER
))
817 RGBTRIPLE
*rgb
= ((BITMAPCOREINFO
*)data
)->bmciColors
;
818 DWORD col
= RGB( rgb
->rgbtRed
, rgb
->rgbtGreen
, rgb
->rgbtBlue
);
819 if ((col
== RGB(0,0,0)))
822 col
= RGB( rgb
->rgbtRed
, rgb
->rgbtGreen
, rgb
->rgbtBlue
);
823 fColor
= (col
!= RGB(0xff,0xff,0xff));
829 WARN("(%ld): wrong size for data\n",
830 data
->bmiHeader
.biSize
);
835 /* Now create the bitmap */
839 HDC tmpdc
= CreateDCA( "DISPLAY", NULL
, NULL
, NULL
);
840 handle
= CreateCompatibleBitmap( tmpdc
, width
, height
);
843 else handle
= CreateBitmap( width
, height
, 1, 1, NULL
);
845 if (!handle
) return 0;
847 if (init
== CBM_INIT
)
848 SetDIBits( hdc
, handle
, 0, height
, bits
, data
, coloruse
);
852 /***********************************************************************
853 * CreateDIBSection16 (GDI.489)
855 HBITMAP16 WINAPI
CreateDIBSection16 (HDC16 hdc
, BITMAPINFO
*bmi
, UINT16 usage
,
856 SEGPTR
*bits
, HANDLE section
,
859 HBITMAP16 hbitmap
= 0;
861 BOOL bDesktopDC
= FALSE
;
863 /* If the reference hdc is null, take the desktop dc */
866 hdc
= CreateCompatibleDC(0);
870 if ((dc
= DC_GetDCPtr( hdc
)))
872 hbitmap
= dc
->funcs
->pCreateDIBSection16(dc
, bmi
, usage
, bits
, section
, offset
, 0);
882 /***********************************************************************
883 * DIB_CreateDIBSection
885 HBITMAP
DIB_CreateDIBSection(HDC hdc
, BITMAPINFO
*bmi
, UINT usage
,
886 LPVOID
*bits
, HANDLE section
,
887 DWORD offset
, DWORD ovr_pitch
)
891 BOOL bDesktopDC
= FALSE
;
893 /* If the reference hdc is null, take the desktop dc */
896 hdc
= CreateCompatibleDC(0);
900 if ((dc
= DC_GetDCPtr( hdc
)))
902 hbitmap
= dc
->funcs
->pCreateDIBSection(dc
, bmi
, usage
, bits
, section
, offset
, ovr_pitch
);
912 /***********************************************************************
913 * CreateDIBSection (GDI32.@)
915 HBITMAP WINAPI
CreateDIBSection(HDC hdc
, BITMAPINFO
*bmi
, UINT usage
,
916 LPVOID
*bits
, HANDLE section
,
919 return DIB_CreateDIBSection(hdc
, bmi
, usage
, bits
, section
, offset
, 0);
922 /***********************************************************************
923 * DIB_DeleteDIBSection
925 void DIB_DeleteDIBSection( BITMAPOBJ
*bmp
)
929 DIBSECTION
*dib
= bmp
->dib
;
931 if (dib
->dsBm
.bmBits
)
935 SYSTEM_INFO SystemInfo
;
936 GetSystemInfo( &SystemInfo
);
937 UnmapViewOfFile( (char *)dib
->dsBm
.bmBits
-
938 (dib
->dsOffset
% SystemInfo
.dwAllocationGranularity
) );
940 else if (!dib
->dsOffset
)
941 VirtualFree(dib
->dsBm
.bmBits
, 0L, MEM_RELEASE
);
944 BITMAP_Driver
->pDeleteDIBSection(bmp
);
946 HeapFree(GetProcessHeap(), 0, dib
);
951 /***********************************************************************
952 * DIB_CreateDIBFromBitmap
953 * Allocates a packed DIB and copies the bitmap data into it.
955 HGLOBAL
DIB_CreateDIBFromBitmap(HDC hdc
, HBITMAP hBmp
)
957 BITMAPOBJ
*pBmp
= NULL
;
958 HGLOBAL hPackedDIB
= 0;
959 LPBYTE pPackedDIB
= NULL
;
960 LPBITMAPINFOHEADER pbmiHeader
= NULL
;
961 unsigned int width
, height
, depth
, cDataSize
= 0, cPackedSize
= 0,
962 OffsetBits
= 0, nLinesCopied
= 0;
964 /* Get a pointer to the BITMAPOBJ structure */
965 pBmp
= (BITMAPOBJ
*)GDI_GetObjPtr( hBmp
, BITMAP_MAGIC
);
966 if (!pBmp
) return hPackedDIB
;
968 /* Get the bitmap dimensions */
969 width
= pBmp
->bitmap
.bmWidth
;
970 height
= pBmp
->bitmap
.bmHeight
;
971 depth
= pBmp
->bitmap
.bmBitsPixel
;
974 * A packed DIB contains a BITMAPINFO structure followed immediately by
975 * an optional color palette and the pixel data.
978 /* Calculate the size of the packed DIB */
979 cDataSize
= DIB_GetDIBImageBytes( width
, height
, depth
);
980 cPackedSize
= sizeof(BITMAPINFOHEADER
)
981 + ( (depth
<= 8) ? (sizeof(RGBQUAD
) * (1 << depth
)) : 0 )
983 /* Get the offset to the bits */
984 OffsetBits
= cPackedSize
- cDataSize
;
986 /* Allocate the packed DIB */
987 TRACE("\tAllocating packed DIB of size %d\n", cPackedSize
);
988 hPackedDIB
= GlobalAlloc(GMEM_MOVEABLE
| GMEM_DDESHARE
/*| GMEM_ZEROINIT*/,
992 WARN("Could not allocate packed DIB!\n");
996 /* A packed DIB starts with a BITMAPINFOHEADER */
997 pPackedDIB
= (LPBYTE
)GlobalLock(hPackedDIB
);
998 pbmiHeader
= (LPBITMAPINFOHEADER
)pPackedDIB
;
1000 /* Init the BITMAPINFOHEADER */
1001 pbmiHeader
->biSize
= sizeof(BITMAPINFOHEADER
);
1002 pbmiHeader
->biWidth
= width
;
1003 pbmiHeader
->biHeight
= height
;
1004 pbmiHeader
->biPlanes
= 1;
1005 pbmiHeader
->biBitCount
= depth
;
1006 pbmiHeader
->biCompression
= BI_RGB
;
1007 pbmiHeader
->biSizeImage
= 0;
1008 pbmiHeader
->biXPelsPerMeter
= pbmiHeader
->biYPelsPerMeter
= 0;
1009 pbmiHeader
->biClrUsed
= 0;
1010 pbmiHeader
->biClrImportant
= 0;
1012 /* Retrieve the DIB bits from the bitmap and fill in the
1013 * DIB color table if present */
1015 nLinesCopied
= GetDIBits(hdc
, /* Handle to device context */
1016 hBmp
, /* Handle to bitmap */
1017 0, /* First scan line to set in dest bitmap */
1018 height
, /* Number of scan lines to copy */
1019 pPackedDIB
+ OffsetBits
, /* [out] Address of array for bitmap bits */
1020 (LPBITMAPINFO
) pbmiHeader
, /* [out] Address of BITMAPINFO structure */
1021 0); /* RGB or palette index */
1022 GlobalUnlock(hPackedDIB
);
1024 /* Cleanup if GetDIBits failed */
1025 if (nLinesCopied
!= height
)
1027 TRACE("\tGetDIBits returned %d. Actual lines=%d\n", nLinesCopied
, height
);
1028 GlobalFree(hPackedDIB
);
1033 GDI_ReleaseObj( hBmp
);