2 * GDI device-independent bitmaps
4 * Copyright 1993,1994 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "selectors.h"
28 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(bitmap);
33 /***********************************************************************
34 * DIB_GetDIBWidthBytes
36 * Return the width of a DIB bitmap in bytes. DIB bitmap data is 32-bit aligned.
37 * http://www.microsoft.com/msdn/sdk/platforms/doc/sdk/win32/struc/src/str01.htm
39 int DIB_GetDIBWidthBytes( int width, int depth )
45 case 1: words = (width + 31) / 32; break;
46 case 4: words = (width + 7) / 8; break;
47 case 8: words = (width + 3) / 4; break;
49 case 16: words = (width + 1) / 2; break;
50 case 24: words = (width * 3 + 3)/4; break;
53 WARN("(%d): Unsupported depth\n", depth );
61 /***********************************************************************
62 * DIB_GetDIBImageBytes
64 * Return the number of bytes used to hold the image in a DIB bitmap.
66 int DIB_GetDIBImageBytes( int width, int height, int depth )
68 return DIB_GetDIBWidthBytes( width, depth ) * abs( height );
72 /***********************************************************************
75 * Return the size of the bitmap info structure including color table.
77 int DIB_BitmapInfoSize( const BITMAPINFO * info, WORD coloruse )
81 if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
83 BITMAPCOREHEADER *core = (BITMAPCOREHEADER *)info;
84 colors = (core->bcBitCount <= 8) ? 1 << core->bcBitCount : 0;
85 return sizeof(BITMAPCOREHEADER) + colors *
86 ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBTRIPLE) : sizeof(WORD));
88 else /* assume BITMAPINFOHEADER */
90 colors = info->bmiHeader.biClrUsed;
91 if (!colors && (info->bmiHeader.biBitCount <= 8))
92 colors = 1 << info->bmiHeader.biBitCount;
93 return sizeof(BITMAPINFOHEADER) + colors *
94 ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBQUAD) : sizeof(WORD));
99 /***********************************************************************
102 * Get the info from a bitmap header.
103 * Return 1 for INFOHEADER, 0 for COREHEADER,
104 * 4 for V4HEADER, 5 for V5HEADER, -1 for error.
106 int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, DWORD *width,
107 int *height, WORD *bpp, WORD *compr )
109 if (header->biSize == sizeof(BITMAPINFOHEADER))
111 *width = header->biWidth;
112 *height = header->biHeight;
113 *bpp = header->biBitCount;
114 *compr = header->biCompression;
117 if (header->biSize == sizeof(BITMAPCOREHEADER))
119 BITMAPCOREHEADER *core = (BITMAPCOREHEADER *)header;
120 *width = core->bcWidth;
121 *height = core->bcHeight;
122 *bpp = core->bcBitCount;
126 if (header->biSize == sizeof(BITMAPV4HEADER))
128 BITMAPV4HEADER *v4hdr = (BITMAPV4HEADER *)header;
129 *width = v4hdr->bV4Width;
130 *height = v4hdr->bV4Height;
131 *bpp = v4hdr->bV4BitCount;
132 *compr = v4hdr->bV4Compression;
135 if (header->biSize == sizeof(BITMAPV5HEADER))
137 BITMAPV5HEADER *v5hdr = (BITMAPV5HEADER *)header;
138 *width = v5hdr->bV5Width;
139 *height = v5hdr->bV5Height;
140 *bpp = v5hdr->bV5BitCount;
141 *compr = v5hdr->bV5Compression;
144 ERR("(%ld): unknown/wrong size for header\n", header->biSize );
149 /***********************************************************************
150 * StretchDIBits (GDI.439)
152 INT16 WINAPI StretchDIBits16(HDC16 hdc, INT16 xDst, INT16 yDst, INT16 widthDst,
153 INT16 heightDst, INT16 xSrc, INT16 ySrc, INT16 widthSrc,
154 INT16 heightSrc, const VOID *bits,
155 const BITMAPINFO *info, UINT16 wUsage, DWORD dwRop )
157 return (INT16)StretchDIBits( hdc, xDst, yDst, widthDst, heightDst,
158 xSrc, ySrc, widthSrc, heightSrc, bits,
159 info, wUsage, dwRop );
163 /***********************************************************************
164 * StretchDIBits (GDI32.@)
166 INT WINAPI StretchDIBits(HDC hdc, INT xDst, INT yDst, INT widthDst,
167 INT heightDst, INT xSrc, INT ySrc, INT widthSrc,
168 INT heightSrc, const void *bits,
169 const BITMAPINFO *info, UINT wUsage, DWORD dwRop )
171 DC *dc = DC_GetDCUpdate( hdc );
172 if(!dc) return FALSE;
174 if(dc->funcs->pStretchDIBits)
176 heightSrc = dc->funcs->pStretchDIBits(dc, xDst, yDst, widthDst,
177 heightDst, xSrc, ySrc, widthSrc,
178 heightSrc, bits, info, wUsage, dwRop);
179 GDI_ReleaseObj( hdc );
181 else /* use StretchBlt */
183 HBITMAP hBitmap, hOldBitmap;
186 GDI_ReleaseObj( hdc );
187 hdcMem = CreateCompatibleDC( hdc );
188 if (info->bmiHeader.biCompression == BI_RLE4 ||
189 info->bmiHeader.biCompression == BI_RLE8) {
191 /* when RLE compression is used, there may be some gaps (ie the DIB doesn't
192 * contain all the rectangle described in bmiHeader, but only part of it.
193 * This mean that those undescribed pixels must be left untouched.
194 * So, we first copy on a memory bitmap the current content of the
195 * destination rectangle, blit the DIB bits on top of it - hence leaving
196 * the gaps untouched -, and blitting the rectangle back.
197 * This insure that gaps are untouched on the destination rectangle
198 * Not doing so leads to trashed images (the gaps contain what was on the
199 * memory bitmap => generally black or garbage)
200 * Unfortunately, RLE DIBs without gaps will be slowed down. But this is
201 * another speed vs correctness issue. Anyway, if speed is needed, then the
202 * pStretchDIBits function shall be implemented.
205 hBitmap = CreateCompatibleBitmap(hdc, info->bmiHeader.biWidth,
206 info->bmiHeader.biHeight);
207 hOldBitmap = SelectObject( hdcMem, hBitmap );
209 /* copy existing bitmap from destination dc */
210 StretchBlt( hdcMem, xSrc, abs(info->bmiHeader.biHeight) - heightSrc - ySrc,
211 widthSrc, heightSrc, hdc, xDst, yDst, widthDst, heightDst,
213 SetDIBits(hdcMem, hBitmap, 0, info->bmiHeader.biHeight, bits,
214 info, DIB_RGB_COLORS);
217 hBitmap = CreateDIBitmap( hdc, &info->bmiHeader, CBM_INIT,
218 bits, info, wUsage );
219 hOldBitmap = SelectObject( hdcMem, hBitmap );
222 /* Origin for DIBitmap may be bottom left (positive biHeight) or top
223 left (negative biHeight) */
224 StretchBlt( hdc, xDst, yDst, widthDst, heightDst,
225 hdcMem, xSrc, abs(info->bmiHeader.biHeight) - heightSrc - ySrc,
226 widthSrc, heightSrc, dwRop );
227 SelectObject( hdcMem, hOldBitmap );
229 DeleteObject( hBitmap );
235 /***********************************************************************
236 * SetDIBits (GDI.440)
238 INT16 WINAPI SetDIBits16( HDC16 hdc, HBITMAP16 hbitmap, UINT16 startscan,
239 UINT16 lines, LPCVOID bits, const BITMAPINFO *info,
242 return SetDIBits( hdc, hbitmap, startscan, lines, bits, info, coloruse );
246 /******************************************************************************
247 * SetDIBits [GDI32.@] Sets pixels in a bitmap using colors from DIB
250 * hdc [I] Handle to device context
251 * hbitmap [I] Handle to bitmap
252 * startscan [I] Starting scan line
253 * lines [I] Number of scan lines
254 * bits [I] Array of bitmap bits
255 * info [I] Address of structure with data
256 * coloruse [I] Type of color indexes to use
259 * Success: Number of scan lines copied
262 INT WINAPI SetDIBits( HDC hdc, HBITMAP hbitmap, UINT startscan,
263 UINT lines, LPCVOID bits, const BITMAPINFO *info,
270 /* Check parameters */
271 if (!(dc = DC_GetDCUpdate( hdc ))) return 0;
273 if (!(bitmap = (BITMAPOBJ *) GDI_GetObjPtr( hbitmap, BITMAP_MAGIC )))
275 GDI_ReleaseObj( hdc );
279 result = BITMAP_Driver->pSetDIBits(bitmap, dc, startscan,
283 GDI_ReleaseObj( hbitmap );
284 GDI_ReleaseObj( hdc );
290 /***********************************************************************
291 * SetDIBitsToDevice (GDI.443)
293 INT16 WINAPI SetDIBitsToDevice16(HDC16 hdc, INT16 xDest, INT16 yDest, INT16 cx,
294 INT16 cy, INT16 xSrc, INT16 ySrc, UINT16 startscan,
295 UINT16 lines, LPCVOID bits, const BITMAPINFO *info,
298 return SetDIBitsToDevice( hdc, xDest, yDest, cx, cy, xSrc, ySrc,
299 startscan, lines, bits, info, coloruse );
303 /***********************************************************************
304 * SetDIBitsToDevice (GDI32.@)
306 INT WINAPI SetDIBitsToDevice(HDC hdc, INT xDest, INT yDest, DWORD cx,
307 DWORD cy, INT xSrc, INT ySrc, UINT startscan,
308 UINT lines, LPCVOID bits, const BITMAPINFO *info,
314 if (!(dc = DC_GetDCUpdate( hdc ))) return 0;
316 if(dc->funcs->pSetDIBitsToDevice)
317 ret = dc->funcs->pSetDIBitsToDevice( dc, xDest, yDest, cx, cy, xSrc,
318 ySrc, startscan, lines, bits,
321 FIXME("unimplemented on hdc %08x\n", hdc);
325 GDI_ReleaseObj( hdc );
329 /***********************************************************************
330 * SetDIBColorTable (GDI.602)
332 UINT16 WINAPI SetDIBColorTable16( HDC16 hdc, UINT16 startpos, UINT16 entries,
335 return SetDIBColorTable( hdc, startpos, entries, colors );
338 /***********************************************************************
339 * SetDIBColorTable (GDI32.@)
341 UINT WINAPI SetDIBColorTable( HDC hdc, UINT startpos, UINT entries,
348 if (!(dc = DC_GetDCUpdate( hdc ))) return 0;
350 if (!(bmp = (BITMAPOBJ*)GDI_GetObjPtr( dc->hBitmap, BITMAP_MAGIC )))
352 GDI_ReleaseObj( hdc );
356 result = BITMAP_Driver->pSetDIBColorTable(bmp, dc, startpos, entries, colors);
358 GDI_ReleaseObj( dc->hBitmap );
359 GDI_ReleaseObj( hdc );
363 /***********************************************************************
364 * GetDIBColorTable (GDI.603)
366 UINT16 WINAPI GetDIBColorTable16( HDC16 hdc, UINT16 startpos, UINT16 entries,
369 return GetDIBColorTable( hdc, startpos, entries, colors );
372 /***********************************************************************
373 * GetDIBColorTable (GDI32.@)
375 UINT WINAPI GetDIBColorTable( HDC hdc, UINT startpos, UINT entries,
382 if (!(dc = DC_GetDCUpdate( hdc ))) return 0;
384 if (!(bmp = (BITMAPOBJ*)GDI_GetObjPtr( dc->hBitmap, BITMAP_MAGIC )))
386 GDI_ReleaseObj( hdc );
390 result = BITMAP_Driver->pGetDIBColorTable(bmp, dc, startpos, entries, colors);
392 GDI_ReleaseObj( dc->hBitmap );
393 GDI_ReleaseObj( hdc );
397 /* FIXME the following two structs should be combined with __sysPalTemplate in
398 objects/color.c - this should happen after de-X11-ing both of these
400 NB. RGBQUAD and PALETTEENTRY have different orderings of red, green
403 static RGBQUAD EGAColors[16] = {
404 /* rgbBlue, rgbGreen, rgbRed, rgbReserverd */
405 { 0x00, 0x00, 0x00, 0x00 },
406 { 0x00, 0x00, 0x80, 0x00 },
407 { 0x00, 0x80, 0x00, 0x00 },
408 { 0x00, 0x80, 0x80, 0x00 },
409 { 0x80, 0x00, 0x00, 0x00 },
410 { 0x80, 0x00, 0x80, 0x00 },
411 { 0x80, 0x80, 0x00, 0x00 },
412 { 0x80, 0x80, 0x80, 0x00 },
413 { 0xc0, 0xc0, 0xc0, 0x00 },
414 { 0x00, 0x00, 0xff, 0x00 },
415 { 0x00, 0xff, 0x00, 0x00 },
416 { 0x00, 0xff, 0xff, 0x00 },
417 { 0xff, 0x00, 0x00, 0x00 },
418 { 0xff, 0x00, 0xff, 0x00 },
419 { 0xff, 0xff, 0x00, 0x00 },
420 { 0xff, 0xff, 0xff, 0x00 }
424 static RGBQUAD DefLogPalette[20] = { /* Copy of Default Logical Palette */
425 /* rgbBlue, rgbGreen, rgbRed, rgbReserverd */
426 { 0x00, 0x00, 0x00, 0x00 },
427 { 0x00, 0x00, 0x80, 0x00 },
428 { 0x00, 0x80, 0x00, 0x00 },
429 { 0x00, 0x80, 0x80, 0x00 },
430 { 0x80, 0x00, 0x00, 0x00 },
431 { 0x80, 0x00, 0x80, 0x00 },
432 { 0x80, 0x80, 0x00, 0x00 },
433 { 0xc0, 0xc0, 0xc0, 0x00 },
434 { 0xc0, 0xdc, 0xc0, 0x00 },
435 { 0xf0, 0xca, 0xa6, 0x00 },
436 { 0xf0, 0xfb, 0xff, 0x00 },
437 { 0xa4, 0xa0, 0xa0, 0x00 },
438 { 0x80, 0x80, 0x80, 0x00 },
439 { 0x00, 0x00, 0xf0, 0x00 },
440 { 0x00, 0xff, 0x00, 0x00 },
441 { 0x00, 0xff, 0xff, 0x00 },
442 { 0xff, 0x00, 0x00, 0x00 },
443 { 0xff, 0x00, 0xff, 0x00 },
444 { 0xff, 0xff, 0x00, 0x00 },
445 { 0xff, 0xff, 0xff, 0x00 }
448 /***********************************************************************
449 * GetDIBits (GDI.441)
451 INT16 WINAPI GetDIBits16( HDC16 hdc, HBITMAP16 hbitmap, UINT16 startscan,
452 UINT16 lines, LPVOID bits, BITMAPINFO * info,
455 return GetDIBits( hdc, hbitmap, startscan, lines, bits, info, coloruse );
459 /******************************************************************************
460 * GetDIBits [GDI32.@] Retrieves bits of bitmap and copies to buffer
463 * Success: Number of scan lines copied from bitmap
466 * http://www.microsoft.com/msdn/sdk/platforms/doc/sdk/win32/func/src/f30_14.htm
468 INT WINAPI GetDIBits(
469 HDC hdc, /* [in] Handle to device context */
470 HBITMAP hbitmap, /* [in] Handle to bitmap */
471 UINT startscan, /* [in] First scan line to set in dest bitmap */
472 UINT lines, /* [in] Number of scan lines to copy */
473 LPVOID bits, /* [out] Address of array for bitmap bits */
474 BITMAPINFO * info, /* [out] Address of structure with bitmap data */
475 UINT coloruse) /* [in] RGB or palette index */
479 PALETTEENTRY * palEntry;
480 PALETTEOBJ * palette;
484 if (!(dc = DC_GetDCUpdate( hdc ))) return 0;
485 if (!(bmp = (BITMAPOBJ *)GDI_GetObjPtr( hbitmap, BITMAP_MAGIC )))
487 GDI_ReleaseObj( hdc );
490 if (!(palette = (PALETTEOBJ*)GDI_GetObjPtr( dc->hPalette, PALETTE_MAGIC )))
492 GDI_ReleaseObj( hdc );
493 GDI_ReleaseObj( hbitmap );
497 /* Transfer color info */
499 if (info->bmiHeader.biBitCount <= 8 && info->bmiHeader.biBitCount > 0 ) {
501 info->bmiHeader.biClrUsed = 0;
503 if(info->bmiHeader.biBitCount >= bmp->bitmap.bmBitsPixel) {
504 palEntry = palette->logpalette.palPalEntry;
505 for (i = 0; i < (1 << bmp->bitmap.bmBitsPixel); i++, palEntry++) {
506 if (coloruse == DIB_RGB_COLORS) {
507 info->bmiColors[i].rgbRed = palEntry->peRed;
508 info->bmiColors[i].rgbGreen = palEntry->peGreen;
509 info->bmiColors[i].rgbBlue = palEntry->peBlue;
510 info->bmiColors[i].rgbReserved = 0;
512 else ((WORD *)info->bmiColors)[i] = (WORD)i;
515 switch (info->bmiHeader.biBitCount) {
517 info->bmiColors[0].rgbRed = info->bmiColors[0].rgbGreen =
518 info->bmiColors[0].rgbBlue = 0;
519 info->bmiColors[0].rgbReserved = 0;
520 info->bmiColors[1].rgbRed = info->bmiColors[1].rgbGreen =
521 info->bmiColors[1].rgbBlue = 0xff;
522 info->bmiColors[1].rgbReserved = 0;
526 memcpy(info->bmiColors, EGAColors, sizeof(EGAColors));
534 memcpy(info->bmiColors, DefLogPalette,
535 10 * sizeof(RGBQUAD));
536 memcpy(info->bmiColors + 246, DefLogPalette + 10,
537 10 * sizeof(RGBQUAD));
538 color = info->bmiColors + 10;
539 for(r = 0; r <= 5; r++) /* FIXME */
540 for(g = 0; g <= 5; g++)
541 for(b = 0; b <= 5; b++) {
542 color->rgbRed = (r * 0xff) / 5;
543 color->rgbGreen = (g * 0xff) / 5;
544 color->rgbBlue = (b * 0xff) / 5;
545 color->rgbReserved = 0;
553 GDI_ReleaseObj( dc->hPalette );
557 /* If the bitmap object already have a dib section that contains image data, get the bits from it */
558 if(bmp->dib && bmp->dib->dsBm.bmBitsPixel >= 15 && info->bmiHeader.biBitCount >= 15)
560 /*FIXME: Only RGB dibs supported for now */
561 unsigned int srcwidth = bmp->dib->dsBm.bmWidth, srcwidthb = bmp->dib->dsBm.bmWidthBytes;
562 int dstwidthb = DIB_GetDIBWidthBytes( info->bmiHeader.biWidth, info->bmiHeader.biBitCount );
563 LPBYTE dbits = bits, sbits = (LPBYTE) bmp->dib->dsBm.bmBits + (startscan * srcwidthb);
566 if ((info->bmiHeader.biHeight < 0) ^ (bmp->dib->dsBmih.biHeight < 0))
568 dbits = (LPBYTE)bits + (dstwidthb * (lines-1));
569 dstwidthb = -dstwidthb;
572 switch( info->bmiHeader.biBitCount ) {
575 case 16: /* 16 bpp dstDIB */
577 LPWORD dstbits = (LPWORD)dbits;
578 WORD rmask = 0x7c00, gmask= 0x03e0, bmask = 0x001f;
580 /* FIXME: BI_BITFIELDS not supported yet */
582 switch(bmp->dib->dsBm.bmBitsPixel) {
584 case 16: /* 16 bpp srcDIB -> 16 bpp dstDIB */
586 /* FIXME: BI_BITFIELDS not supported yet */
587 for (y = 0; y < lines; y++, dbits+=dstwidthb, sbits+=srcwidthb)
588 memcpy(dbits, sbits, srcwidthb);
592 case 24: /* 24 bpp srcDIB -> 16 bpp dstDIB */
594 LPBYTE srcbits = sbits;
596 for( y = 0; y < lines; y++) {
597 for( x = 0; x < srcwidth; x++, srcbits += 3)
598 *dstbits++ = ((srcbits[0] >> 3) & bmask) |
599 (((WORD)srcbits[1] << 2) & gmask) |
600 (((WORD)srcbits[2] << 7) & rmask);
602 dstbits = (LPWORD)(dbits+=dstwidthb);
603 srcbits = (sbits += srcwidthb);
608 case 32: /* 32 bpp srcDIB -> 16 bpp dstDIB */
610 LPDWORD srcbits = (LPDWORD)sbits;
613 for( y = 0; y < lines; y++) {
614 for( x = 0; x < srcwidth; x++ ) {
616 *dstbits++ = (WORD)(((val >> 3) & bmask) | ((val >> 6) & gmask) |
617 ((val >> 9) & rmask));
619 dstbits = (LPWORD)(dbits+=dstwidthb);
620 srcbits = (LPDWORD)(sbits+=srcwidthb);
625 default: /* ? bit bmp -> 16 bit DIB */
626 FIXME("15/16 bit DIB %d bit bitmap\n",
627 bmp->bitmap.bmBitsPixel);
633 case 24: /* 24 bpp dstDIB */
635 LPBYTE dstbits = dbits;
637 switch(bmp->dib->dsBm.bmBitsPixel) {
639 case 16: /* 16 bpp srcDIB -> 24 bpp dstDIB */
641 LPWORD srcbits = (LPWORD)sbits;
644 /* FIXME: BI_BITFIELDS not supported yet */
645 for( y = 0; y < lines; y++) {
646 for( x = 0; x < srcwidth; x++ ) {
648 *dstbits++ = (BYTE)(((val << 3) & 0xf8) | ((val >> 2) & 0x07));
649 *dstbits++ = (BYTE)(((val >> 2) & 0xf8) | ((val >> 7) & 0x07));
650 *dstbits++ = (BYTE)(((val >> 7) & 0xf8) | ((val >> 12) & 0x07));
652 dstbits = (LPBYTE)(dbits+=dstwidthb);
653 srcbits = (LPWORD)(sbits+=srcwidthb);
658 case 24: /* 24 bpp srcDIB -> 24 bpp dstDIB */
660 for (y = 0; y < lines; y++, dbits+=dstwidthb, sbits+=srcwidthb)
661 memcpy(dbits, sbits, srcwidthb);
665 case 32: /* 32 bpp srcDIB -> 24 bpp dstDIB */
667 LPBYTE srcbits = (LPBYTE)sbits;
669 for( y = 0; y < lines; y++) {
670 for( x = 0; x < srcwidth; x++, srcbits++ ) {
671 *dstbits++ = *srcbits++;
672 *dstbits++ = *srcbits++;
673 *dstbits++ = *srcbits++;
675 dstbits=(LPBYTE)(dbits+=dstwidthb);
676 srcbits = (LPBYTE)(sbits+=srcwidthb);
681 default: /* ? bit bmp -> 24 bit DIB */
682 FIXME("24 bit DIB %d bit bitmap\n",
683 bmp->bitmap.bmBitsPixel);
689 case 32: /* 32 bpp dstDIB */
691 LPDWORD dstbits = (LPDWORD)dbits;
693 /* FIXME: BI_BITFIELDS not supported yet */
695 switch(bmp->dib->dsBm.bmBitsPixel) {
696 case 16: /* 16 bpp srcDIB -> 32 bpp dstDIB */
698 LPWORD srcbits = (LPWORD)sbits;
701 /* FIXME: BI_BITFIELDS not supported yet */
702 for( y = 0; y < lines; y++) {
703 for( x = 0; x < srcwidth; x++ ) {
704 val = (DWORD)*srcbits++;
705 *dstbits++ = ((val << 3) & 0xf8) | ((val >> 2) & 0x07) |
706 ((val << 6) & 0xf800) | ((val << 1) & 0x0700) |
707 ((val << 9) & 0xf80000) | ((val << 4) & 0x070000);
709 dstbits=(LPDWORD)(dbits+=dstwidthb);
710 srcbits=(LPWORD)(sbits+=srcwidthb);
715 case 24: /* 24 bpp srcDIB -> 32 bpp dstDIB */
717 LPBYTE srcbits = sbits;
719 for( y = 0; y < lines; y++) {
720 for( x = 0; x < srcwidth; x++, srcbits+=3 )
721 *dstbits++ = ((DWORD)*srcbits) & 0x00ffffff;
722 dstbits=(LPDWORD)(dbits+=dstwidthb);
723 srcbits=(sbits+=srcwidthb);
728 case 32: /* 32 bpp srcDIB -> 16 bpp dstDIB */
730 /* FIXME: BI_BITFIELDS not supported yet */
731 for (y = 0; y < lines; y++, dbits+=dstwidthb, sbits+=srcwidthb)
732 memcpy(dbits, sbits, srcwidthb);
736 default: /* ? bit bmp -> 16 bit DIB */
737 FIXME("15/16 bit DIB %d bit bitmap\n",
738 bmp->bitmap.bmBitsPixel);
744 default: /* ? bit DIB */
745 FIXME("Unsupported DIB depth %d\n", info->bmiHeader.biBitCount);
749 /* Otherwise, get bits from the XImage */
750 else if(!BITMAP_Driver->pGetDIBits(bmp, dc, startscan, lines, bits, info, coloruse, hbitmap))
752 GDI_ReleaseObj( hdc );
753 GDI_ReleaseObj( hbitmap );
758 else if( info->bmiHeader.biSize >= sizeof(BITMAPINFOHEADER) )
760 /* fill in struct members */
762 if( info->bmiHeader.biBitCount == 0)
764 info->bmiHeader.biWidth = bmp->bitmap.bmWidth;
765 info->bmiHeader.biHeight = bmp->bitmap.bmHeight;
766 info->bmiHeader.biPlanes = 1;
767 info->bmiHeader.biBitCount = bmp->bitmap.bmBitsPixel;
768 info->bmiHeader.biSizeImage =
769 DIB_GetDIBImageBytes( bmp->bitmap.bmWidth,
770 bmp->bitmap.bmHeight,
771 bmp->bitmap.bmBitsPixel );
772 info->bmiHeader.biCompression = 0;
776 info->bmiHeader.biSizeImage = DIB_GetDIBImageBytes(
777 info->bmiHeader.biWidth,
778 info->bmiHeader.biHeight,
779 info->bmiHeader.biBitCount );
783 TRACE("biSizeImage = %ld, biWidth = %ld, biHeight = %ld\n",
784 info->bmiHeader.biSizeImage, info->bmiHeader.biWidth,
785 info->bmiHeader.biHeight);
787 GDI_ReleaseObj( hdc );
788 GDI_ReleaseObj( hbitmap );
794 /***********************************************************************
795 * CreateDIBitmap (GDI.442)
797 HBITMAP16 WINAPI CreateDIBitmap16( HDC16 hdc, const BITMAPINFOHEADER * header,
798 DWORD init, LPCVOID bits, const BITMAPINFO * data,
801 return CreateDIBitmap( hdc, header, init, bits, data, coloruse );
805 /***********************************************************************
806 * CreateDIBitmap (GDI32.@)
808 HBITMAP WINAPI CreateDIBitmap( HDC hdc, const BITMAPINFOHEADER *header,
809 DWORD init, LPCVOID bits, const BITMAPINFO *data,
819 if (DIB_GetBitmapInfo( header, &width, &height, &bpp, &compr ) == -1) return 0;
820 if (height < 0) height = -height;
822 /* Check if we should create a monochrome or color bitmap. */
823 /* We create a monochrome bitmap only if it has exactly 2 */
824 /* colors, which are black followed by white, nothing else. */
825 /* In all other cases, we create a color bitmap. */
827 if (bpp != 1) fColor = TRUE;
828 else if ((coloruse != DIB_RGB_COLORS) ||
829 (init != CBM_INIT) || !data) fColor = FALSE;
832 if (data->bmiHeader.biSize == sizeof(BITMAPINFOHEADER))
834 RGBQUAD *rgb = data->bmiColors;
835 DWORD col = RGB( rgb->rgbRed, rgb->rgbGreen, rgb->rgbBlue );
837 /* Check if the first color of the colormap is black */
838 if ((col == RGB(0,0,0)))
841 col = RGB( rgb->rgbRed, rgb->rgbGreen, rgb->rgbBlue );
842 /* If the second color is white, create a monochrome bitmap */
843 fColor = (col != RGB(0xff,0xff,0xff));
845 /* Note : If the first color of the colormap is white
846 followed by black, we have to create a color bitmap.
847 If we don't the white will be displayed in black later on!*/
850 else if (data->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
852 RGBTRIPLE *rgb = ((BITMAPCOREINFO *)data)->bmciColors;
853 DWORD col = RGB( rgb->rgbtRed, rgb->rgbtGreen, rgb->rgbtBlue );
854 if ((col == RGB(0,0,0)))
857 col = RGB( rgb->rgbtRed, rgb->rgbtGreen, rgb->rgbtBlue );
858 fColor = (col != RGB(0xff,0xff,0xff));
862 else if (data->bmiHeader.biSize == sizeof(BITMAPV4HEADER))
863 { /* FIXME: correct ? */
864 RGBQUAD *rgb = data->bmiColors;
865 DWORD col = RGB( rgb->rgbRed, rgb->rgbGreen, rgb->rgbBlue );
867 /* Check if the first color of the colormap is black */
868 if ((col == RGB(0,0,0)))
871 col = RGB( rgb->rgbRed, rgb->rgbGreen, rgb->rgbBlue );
872 /* If the second color is white, create a monochrome bitmap */
873 fColor = (col != RGB(0xff,0xff,0xff));
875 /* Note : If the first color of the colormap is white
876 followed by black, we have to create a color bitmap.
877 If we don't the white will be displayed in black later on!*/
882 ERR("(%ld): wrong/unknown size for data\n",
883 data->bmiHeader.biSize );
888 /* Now create the bitmap */
891 handle = CreateBitmap( width, height, GetDeviceCaps( hdc, PLANES ),
892 GetDeviceCaps( hdc, BITSPIXEL ), NULL );
893 else handle = CreateBitmap( width, height, 1, 1, NULL );
895 if (!handle) return 0;
897 if (init == CBM_INIT)
898 SetDIBits( hdc, handle, 0, height, bits, data, coloruse );
902 /***********************************************************************
903 * CreateDIBSection (GDI.489)
905 HBITMAP16 WINAPI CreateDIBSection16 (HDC16 hdc, BITMAPINFO *bmi, UINT16 usage,
906 SEGPTR *bits16, HANDLE section, DWORD offset)
911 hbitmap = CreateDIBSection( hdc, bmi, usage, &bits32, section, offset );
914 BITMAPOBJ *bmp = (BITMAPOBJ *) GDI_GetObjPtr(hbitmap, BITMAP_MAGIC);
915 if (bmp && bmp->dib && bits32)
917 BITMAPINFOHEADER *bi = &bmi->bmiHeader;
918 INT height = bi->biHeight >= 0 ? bi->biHeight : -bi->biHeight;
919 INT width_bytes = DIB_GetDIBWidthBytes(bi->biWidth, bi->biBitCount);
920 INT size = (bi->biSizeImage && bi->biCompression != BI_RGB) ?
921 bi->biSizeImage : width_bytes * height;
923 WORD sel = SELECTOR_AllocBlock( bits32, size, WINE_LDT_FLAGS_DATA );
924 bmp->segptr_bits = MAKESEGPTR( sel, 0 );
925 if (bits16) *bits16 = bmp->segptr_bits;
927 if (bmp) GDI_ReleaseObj( hbitmap );
932 /***********************************************************************
933 * DIB_CreateDIBSection
935 HBITMAP DIB_CreateDIBSection(HDC hdc, BITMAPINFO *bmi, UINT usage,
936 LPVOID *bits, HANDLE section,
937 DWORD offset, DWORD ovr_pitch)
941 BOOL bDesktopDC = FALSE;
943 /* If the reference hdc is null, take the desktop dc */
946 hdc = CreateCompatibleDC(0);
950 if ((dc = DC_GetDCPtr( hdc )))
952 hbitmap = dc->funcs->pCreateDIBSection(dc, bmi, usage, bits, section, offset, ovr_pitch);
962 /***********************************************************************
963 * CreateDIBSection (GDI32.@)
965 HBITMAP WINAPI CreateDIBSection(HDC hdc, BITMAPINFO *bmi, UINT usage,
966 LPVOID *bits, HANDLE section,
969 return DIB_CreateDIBSection(hdc, bmi, usage, bits, section, offset, 0);
972 /***********************************************************************
973 * DIB_DeleteDIBSection
975 void DIB_DeleteDIBSection( BITMAPOBJ *bmp )
979 DIBSECTION *dib = bmp->dib;
981 if (dib->dsBm.bmBits)
985 SYSTEM_INFO SystemInfo;
986 GetSystemInfo( &SystemInfo );
987 UnmapViewOfFile( (char *)dib->dsBm.bmBits -
988 (dib->dsOffset % SystemInfo.dwAllocationGranularity) );
990 else if (!dib->dsOffset)
991 VirtualFree(dib->dsBm.bmBits, 0L, MEM_RELEASE );
994 BITMAP_Driver->pDeleteDIBSection(bmp);
996 HeapFree(GetProcessHeap(), 0, dib);
998 if (bmp->segptr_bits) SELECTOR_FreeBlock( SELECTOROF(bmp->segptr_bits) );
1002 /***********************************************************************
1003 * DIB_CreateDIBFromBitmap
1004 * Allocates a packed DIB and copies the bitmap data into it.
1006 HGLOBAL DIB_CreateDIBFromBitmap(HDC hdc, HBITMAP hBmp)
1008 BITMAPOBJ *pBmp = NULL;
1009 HGLOBAL hPackedDIB = 0;
1010 LPBYTE pPackedDIB = NULL;
1011 LPBITMAPINFOHEADER pbmiHeader = NULL;
1012 unsigned int width, height, depth, cDataSize = 0, cPackedSize = 0,
1013 OffsetBits = 0, nLinesCopied = 0;
1015 /* Get a pointer to the BITMAPOBJ structure */
1016 pBmp = (BITMAPOBJ *)GDI_GetObjPtr( hBmp, BITMAP_MAGIC );
1017 if (!pBmp) return hPackedDIB;
1019 /* Get the bitmap dimensions */
1020 width = pBmp->bitmap.bmWidth;
1021 height = pBmp->bitmap.bmHeight;
1022 depth = pBmp->bitmap.bmBitsPixel;
1025 * A packed DIB contains a BITMAPINFO structure followed immediately by
1026 * an optional color palette and the pixel data.
1029 /* Calculate the size of the packed DIB */
1030 cDataSize = DIB_GetDIBImageBytes( width, height, depth );
1031 cPackedSize = sizeof(BITMAPINFOHEADER)
1032 + ( (depth <= 8) ? (sizeof(RGBQUAD) * (1 << depth)) : 0 )
1034 /* Get the offset to the bits */
1035 OffsetBits = cPackedSize - cDataSize;
1037 /* Allocate the packed DIB */
1038 TRACE("\tAllocating packed DIB of size %d\n", cPackedSize);
1039 hPackedDIB = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE /*| GMEM_ZEROINIT*/,
1043 WARN("Could not allocate packed DIB!\n");
1047 /* A packed DIB starts with a BITMAPINFOHEADER */
1048 pPackedDIB = (LPBYTE)GlobalLock(hPackedDIB);
1049 pbmiHeader = (LPBITMAPINFOHEADER)pPackedDIB;
1051 /* Init the BITMAPINFOHEADER */
1052 pbmiHeader->biSize = sizeof(BITMAPINFOHEADER);
1053 pbmiHeader->biWidth = width;
1054 pbmiHeader->biHeight = height;
1055 pbmiHeader->biPlanes = 1;
1056 pbmiHeader->biBitCount = depth;
1057 pbmiHeader->biCompression = BI_RGB;
1058 pbmiHeader->biSizeImage = 0;
1059 pbmiHeader->biXPelsPerMeter = pbmiHeader->biYPelsPerMeter = 0;
1060 pbmiHeader->biClrUsed = 0;
1061 pbmiHeader->biClrImportant = 0;
1063 /* Retrieve the DIB bits from the bitmap and fill in the
1064 * DIB color table if present */
1066 nLinesCopied = GetDIBits(hdc, /* Handle to device context */
1067 hBmp, /* Handle to bitmap */
1068 0, /* First scan line to set in dest bitmap */
1069 height, /* Number of scan lines to copy */
1070 pPackedDIB + OffsetBits, /* [out] Address of array for bitmap bits */
1071 (LPBITMAPINFO) pbmiHeader, /* [out] Address of BITMAPINFO structure */
1072 0); /* RGB or palette index */
1073 GlobalUnlock(hPackedDIB);
1075 /* Cleanup if GetDIBits failed */
1076 if (nLinesCopied != height)
1078 TRACE("\tGetDIBits returned %d. Actual lines=%d\n", nLinesCopied, height);
1079 GlobalFree(hPackedDIB);
1084 GDI_ReleaseObj( hBmp );