2 * PROJECT: ReactOS win32 kernel mode subsystem
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: win32ss/gdi/ntgdi/dibobj.c
5 * PURPOSE: Dib object functions
14 static const RGBQUAD EGAColorsQuads
[16] =
16 /* rgbBlue, rgbGreen, rgbRed, rgbReserved */
17 { 0x00, 0x00, 0x00, 0x00 },
18 { 0x00, 0x00, 0x80, 0x00 },
19 { 0x00, 0x80, 0x00, 0x00 },
20 { 0x00, 0x80, 0x80, 0x00 },
21 { 0x80, 0x00, 0x00, 0x00 },
22 { 0x80, 0x00, 0x80, 0x00 },
23 { 0x80, 0x80, 0x00, 0x00 },
24 { 0x80, 0x80, 0x80, 0x00 },
25 { 0xc0, 0xc0, 0xc0, 0x00 },
26 { 0x00, 0x00, 0xff, 0x00 },
27 { 0x00, 0xff, 0x00, 0x00 },
28 { 0x00, 0xff, 0xff, 0x00 },
29 { 0xff, 0x00, 0x00, 0x00 },
30 { 0xff, 0x00, 0xff, 0x00 },
31 { 0xff, 0xff, 0x00, 0x00 },
32 { 0xff, 0xff, 0xff, 0x00 }
35 static const RGBQUAD DefLogPaletteQuads
[20] = /* Copy of Default Logical Palette */
37 /* rgbBlue, rgbGreen, rgbRed, rgbReserved */
38 { 0x00, 0x00, 0x00, 0x00 },
39 { 0x00, 0x00, 0x80, 0x00 },
40 { 0x00, 0x80, 0x00, 0x00 },
41 { 0x00, 0x80, 0x80, 0x00 },
42 { 0x80, 0x00, 0x00, 0x00 },
43 { 0x80, 0x00, 0x80, 0x00 },
44 { 0x80, 0x80, 0x00, 0x00 },
45 { 0xc0, 0xc0, 0xc0, 0x00 },
46 { 0xc0, 0xdc, 0xc0, 0x00 },
47 { 0xf0, 0xca, 0xa6, 0x00 },
48 { 0xf0, 0xfb, 0xff, 0x00 },
49 { 0xa4, 0xa0, 0xa0, 0x00 },
50 { 0x80, 0x80, 0x80, 0x00 },
51 { 0x00, 0x00, 0xf0, 0x00 },
52 { 0x00, 0xff, 0x00, 0x00 },
53 { 0x00, 0xff, 0xff, 0x00 },
54 { 0xff, 0x00, 0x00, 0x00 },
55 { 0xff, 0x00, 0xff, 0x00 },
56 { 0xff, 0xff, 0x00, 0x00 },
57 { 0xff, 0xff, 0xff, 0x00 }
63 _In_
const BITMAPINFO
*pbmi
,
68 ULONG i
, cBitsPixel
, cColors
;
70 if (pbmi
->bmiHeader
.biSize
< sizeof(BITMAPINFOHEADER
))
72 PBITMAPCOREINFO pbci
= (PBITMAPCOREINFO
)pbmi
;
73 cBitsPixel
= pbci
->bmciHeader
.bcBitCount
;
77 cBitsPixel
= pbmi
->bmiHeader
.biBitCount
;
80 /* Check if the colors are indexed */
83 /* We create a "full" palette */
84 cColors
= 1 << cBitsPixel
;
86 /* Allocate the palette */
87 ppal
= PALETTE_AllocPalette(PAL_INDEXED
,
94 /* Check if the BITMAPINFO specifies how many colors to use */
95 if ((pbmi
->bmiHeader
.biSize
>= sizeof(BITMAPINFOHEADER
)) &&
96 (pbmi
->bmiHeader
.biClrUsed
!= 0))
98 /* This is how many colors we can actually process */
99 cColors
= min(cColors
, pbmi
->bmiHeader
.biClrUsed
);
102 /* Check how to use the colors */
103 if (iUsage
== DIB_PAL_COLORS
)
107 /* The colors are an array of WORD indices into the DC palette */
108 PWORD pwColors
= (PWORD
)((PCHAR
)pbmi
+ pbmi
->bmiHeader
.biSize
);
110 /* Use the DCs palette or, if no DC is given, the default one */
111 PPALETTE ppalDC
= pdc
? pdc
->dclevel
.ppal
: gppalDefault
;
113 /* Loop all color indices in the DIB */
114 for (i
= 0; i
< cColors
; i
++)
116 /* Get the palette index and handle wraparound when exceeding
117 the number of colors in the DC palette */
118 WORD wIndex
= pwColors
[i
] % ppalDC
->NumColors
;
120 /* USe the RGB value from the DC palette */
121 crColor
= PALETTE_ulGetRGBColorFromIndex(ppalDC
, wIndex
);
122 PALETTE_vSetRGBColorForIndex(ppal
, i
, crColor
);
125 else if (iUsage
== DIB_PAL_BRUSHHACK
)
127 /* The colors are an array of WORD indices into the DC palette */
128 PWORD pwColors
= (PWORD
)((PCHAR
)pbmi
+ pbmi
->bmiHeader
.biSize
);
130 /* Loop all color indices in the DIB */
131 for (i
= 0; i
< cColors
; i
++)
133 /* Set the index directly as the RGB color, the real palette
134 containing RGB values will be calculated when the brush is
136 PALETTE_vSetRGBColorForIndex(ppal
, i
, pwColors
[i
]);
139 /* Mark the palette as a brush hack palette */
140 ppal
->flFlags
|= PAL_BRUSHHACK
;
142 // else if (iUsage == 2)
144 // FIXME: this one is undocumented
147 else if (pbmi
->bmiHeader
.biSize
>= sizeof(BITMAPINFOHEADER
))
149 /* The colors are an array of RGBQUAD values */
150 RGBQUAD
*prgb
= (RGBQUAD
*)((PCHAR
)pbmi
+ pbmi
->bmiHeader
.biSize
);
152 // FIXME: do we need to handle PALETTEINDEX / PALETTERGB macro?
154 /* Loop all color indices in the DIB */
155 for (i
= 0; i
< cColors
; i
++)
157 /* Get the color value and translate it to a COLORREF */
158 RGBQUAD rgb
= prgb
[i
];
159 COLORREF crColor
= RGB(rgb
.rgbRed
, rgb
.rgbGreen
, rgb
.rgbBlue
);
161 /* Set the RGB value in the palette */
162 PALETTE_vSetRGBColorForIndex(ppal
, i
, crColor
);
167 /* The colors are an array of RGBTRIPLE values */
168 RGBTRIPLE
*prgb
= (RGBTRIPLE
*)((PCHAR
)pbmi
+ pbmi
->bmiHeader
.biSize
);
170 /* Loop all color indices in the DIB */
171 for (i
= 0; i
< cColors
; i
++)
173 /* Get the color value and translate it to a COLORREF */
174 RGBTRIPLE rgb
= prgb
[i
];
175 COLORREF crColor
= RGB(rgb
.rgbtRed
, rgb
.rgbtGreen
, rgb
.rgbtBlue
);
177 /* Set the RGB value in the palette */
178 PALETTE_vSetRGBColorForIndex(ppal
, i
, crColor
);
184 /* This is a bitfield / RGB palette */
185 ULONG flRedMask
, flGreenMask
, flBlueMask
;
187 /* Check if the DIB contains bitfield values */
188 if ((pbmi
->bmiHeader
.biSize
>= sizeof(BITMAPINFOHEADER
)) &&
189 (pbmi
->bmiHeader
.biCompression
== BI_BITFIELDS
))
191 /* Check if we have a v4/v5 header */
192 if (pbmi
->bmiHeader
.biSize
>= sizeof(BITMAPV4HEADER
))
194 /* The masks are dedicated fields in the header */
195 PBITMAPV4HEADER pbmV4Header
= (PBITMAPV4HEADER
)&pbmi
->bmiHeader
;
196 flRedMask
= pbmV4Header
->bV4RedMask
;
197 flGreenMask
= pbmV4Header
->bV4GreenMask
;
198 flBlueMask
= pbmV4Header
->bV4BlueMask
;
202 /* The masks are the first 3 values in the DIB color table */
203 PDWORD pdwColors
= (PVOID
)((PCHAR
)pbmi
+ pbmi
->bmiHeader
.biSize
);
204 flRedMask
= pdwColors
[0];
205 flGreenMask
= pdwColors
[1];
206 flBlueMask
= pdwColors
[2];
211 /* Check what bit depth we have. Note: optimization flags are
212 calculated in PALETTE_AllocPalette() */
213 if (cBitsPixel
== 16)
215 /* This is an RGB 555 palette */
217 flGreenMask
= 0x03E0;
222 /* This is an RGB 888 palette */
223 flRedMask
= 0xFF0000;
224 flGreenMask
= 0x00FF00;
225 flBlueMask
= 0x0000FF;
229 /* Allocate the bitfield palette */
230 ppal
= PALETTE_AllocPalette(PAL_BITFIELDS
,
238 /* We're done, return the palette */
242 // Converts a DIB to a device-dependent bitmap
252 CONST BITMAPINFO
*bmi
,
255 HBITMAP SourceBitmap
;
256 PSURFACE psurfDst
, psurfSrc
;
261 PPALETTE ppalDIB
= 0;
265 if (bmi
->bmiHeader
.biSizeImage
> cjMaxBits
)
270 SourceBitmap
= GreCreateBitmapEx(bmi
->bmiHeader
.biWidth
,
273 BitmapFormat(bmi
->bmiHeader
.biBitCount
,
274 bmi
->bmiHeader
.biCompression
),
275 bmi
->bmiHeader
.biHeight
< 0 ? BMF_TOPDOWN
: 0,
276 bmi
->bmiHeader
.biSizeImage
,
281 DPRINT1("Error: Could not create a bitmap.\n");
282 EngSetLastError(ERROR_NO_SYSTEM_RESOURCES
);
286 psurfDst
= SURFACE_ShareLockSurface(hBitmap
);
287 psurfSrc
= SURFACE_ShareLockSurface(SourceBitmap
);
289 if(!(psurfSrc
&& psurfDst
))
291 DPRINT1("Error: Could not lock surfaces\n");
295 /* Create a palette for the DIB */
296 ppalDIB
= CreateDIBPalette(bmi
, DC
, ColorUse
);
299 EngSetLastError(ERROR_NO_SYSTEM_RESOURCES
);
303 /* Initialize EXLATEOBJ */
304 EXLATEOBJ_vInitialize(&exlo
,
307 RGB(0xff, 0xff, 0xff),
308 RGB(0xff, 0xff, 0xff), //DC->pdcattr->crBackgroundClr,
309 0); // DC->pdcattr->crForegroundClr);
311 rcDst
.top
= StartScan
;
313 rcDst
.bottom
= rcDst
.top
+ ScanLines
;
314 rcDst
.right
= psurfDst
->SurfObj
.sizlBitmap
.cx
;
318 result
= IntEngCopyBits(&psurfDst
->SurfObj
,
327 EXLATEOBJ_vCleanup(&exlo
);
330 if (ppalDIB
) PALETTE_ShareUnlockPalette(ppalDIB
);
331 if(psurfSrc
) SURFACE_ShareUnlockSurface(psurfSrc
);
332 if(psurfDst
) SURFACE_ShareUnlockSurface(psurfDst
);
333 GreDeleteObject(SourceBitmap
);
340 IntGdiCreateMaskFromRLE(
351 BYTE Data
, NumPixels
, ToSkip
;
353 ASSERT((Compression
== BI_RLE8
) || (Compression
== BI_RLE4
));
355 /* Create the bitmap */
356 Mask
= GreCreateBitmapEx(Width
, Height
, 0, BMF_1BPP
, 0, 0, NULL
, 0);
360 SurfObj
= EngLockSurface((HSURF
)Mask
);
363 GreDeleteObject(Mask
);
366 ASSERT(SurfObj
->pvBits
!= NULL
);
378 if ((x
+ NumPixels
) > Width
)
379 NumPixels
= Width
- x
;
384 DIB_1BPP_HLine(SurfObj
, x
, x
+ NumPixels
, y
, 1);
405 if (i
>= (BitsSize
- 1))
416 /* Done for this run */
420 /* Embedded data into the RLE */
422 if (Compression
== BI_RLE8
)
425 ToSkip
= (NumPixels
/ 2) + (NumPixels
& 1);
427 if ((i
+ ToSkip
) > BitsSize
)
429 ToSkip
= (ToSkip
+ 1) & ~1;
431 if ((x
+ NumPixels
) > Width
)
432 NumPixels
= Width
- x
;
436 DIB_1BPP_HLine(SurfObj
, x
, x
+ NumPixels
, y
, 1);
443 EngUnlockSurface(SurfObj
);
450 NtGdiSetDIBitsToDeviceInternal(
465 IN BOOL bTransformCoordinates
,
466 IN OPTIONAL HANDLE hcmXform
)
469 NTSTATUS Status
= STATUS_SUCCESS
;
471 HBITMAP hSourceBitmap
= NULL
, hMaskBitmap
= NULL
;
472 SURFOBJ
*pDestSurf
, *pSourceSurf
= NULL
, *pMaskSurf
= NULL
;
479 PPALETTE ppalDIB
= NULL
;
480 LPBITMAPINFO pbmiSafe
;
484 pbmiSafe
= ExAllocatePoolWithTag(PagedPool
, cjMaxInfo
, 'pmTG');
485 if (!pbmiSafe
) return 0;
489 ProbeForRead(bmi
, cjMaxInfo
, 1);
490 ProbeForRead(Bits
, cjMaxBits
, 1);
491 RtlCopyMemory(pbmiSafe
, bmi
, cjMaxInfo
);
494 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
496 Status
= _SEH2_GetExceptionCode();
500 if (!NT_SUCCESS(Status
))
505 ScanLines
= min(ScanLines
, abs(bmi
->bmiHeader
.biHeight
) - StartScan
);
508 DPRINT1("ScanLines == 0\n");
512 pDC
= DC_LockDc(hDC
);
515 EngSetLastError(ERROR_INVALID_HANDLE
);
519 if (pDC
->dctype
== DC_TYPE_INFO
)
526 if (bTransformCoordinates
)
528 IntLPtoDP(pDC
, (LPPOINT
)&rcDest
, 2);
530 rcDest
.left
+= pDC
->ptlDCOrig
.x
;
531 rcDest
.top
+= pDC
->ptlDCOrig
.y
;
532 rcDest
.right
= rcDest
.left
+ Width
;
533 rcDest
.bottom
= rcDest
.top
+ Height
;
534 rcDest
.top
+= StartScan
;
539 SourceSize
.cx
= bmi
->bmiHeader
.biWidth
;
540 SourceSize
.cy
= ScanLines
;
542 //DIBWidth = WIDTH_BYTES_ALIGN32(SourceSize.cx, bmi->bmiHeader.biBitCount);
544 hSourceBitmap
= GreCreateBitmapEx(bmi
->bmiHeader
.biWidth
,
547 BitmapFormat(bmi
->bmiHeader
.biBitCount
,
548 bmi
->bmiHeader
.biCompression
),
549 bmi
->bmiHeader
.biHeight
< 0 ? BMF_TOPDOWN
: 0,
550 bmi
->bmiHeader
.biSizeImage
,
556 EngSetLastError(ERROR_NO_SYSTEM_RESOURCES
);
557 Status
= STATUS_NO_MEMORY
;
561 pSourceSurf
= EngLockSurface((HSURF
)hSourceBitmap
);
564 Status
= STATUS_UNSUCCESSFUL
;
568 /* HACK: If this is a RLE bitmap, only the relevant pixels must be set. */
569 if ((bmi
->bmiHeader
.biCompression
== BI_RLE8
) || (bmi
->bmiHeader
.biCompression
== BI_RLE4
))
571 hMaskBitmap
= IntGdiCreateMaskFromRLE(bmi
->bmiHeader
.biWidth
,
573 bmi
->bmiHeader
.biCompression
,
578 EngSetLastError(ERROR_NO_SYSTEM_RESOURCES
);
579 Status
= STATUS_NO_MEMORY
;
582 pMaskSurf
= EngLockSurface((HSURF
)hMaskBitmap
);
585 Status
= STATUS_UNSUCCESSFUL
;
590 /* Create a palette for the DIB */
591 ppalDIB
= CreateDIBPalette(bmi
, pDC
, ColorUse
);
594 EngSetLastError(ERROR_NO_SYSTEM_RESOURCES
);
595 Status
= STATUS_NO_MEMORY
;
599 /* This is actually a blit */
600 DC_vPrepareDCsForBlit(pDC
, &rcDest
, NULL
, NULL
);
601 pSurf
= pDC
->dclevel
.pSurface
;
604 DC_vFinishBlit(pDC
, NULL
);
611 /* Initialize EXLATEOBJ */
612 EXLATEOBJ_vInitialize(&exlo
,
615 RGB(0xff, 0xff, 0xff),
616 pDC
->pdcattr
->crBackgroundClr
,
617 pDC
->pdcattr
->crForegroundClr
);
619 pDestSurf
= &pSurf
->SurfObj
;
622 DPRINT("BitsToDev with dstsurf=(%d|%d) (%d|%d), src=(%d|%d) w=%d h=%d\n",
623 rcDest
.left
, rcDest
.top
, rcDest
.right
, rcDest
.bottom
,
624 ptSource
.x
, ptSource
.y
, SourceSize
.cx
, SourceSize
.cy
);
625 Status
= IntEngBitBlt(pDestSurf
,
632 pMaskSurf
? &ptSource
: NULL
,
635 pMaskSurf
? ROP4_MASK
: ROP4_FROM_INDEX(R3_OPINDEX_SRCCOPY
));
637 /* Cleanup EXLATEOBJ */
638 EXLATEOBJ_vCleanup(&exlo
);
641 DC_vFinishBlit(pDC
, NULL
);
644 if (NT_SUCCESS(Status
))
649 if (ppalDIB
) PALETTE_ShareUnlockPalette(ppalDIB
);
650 if (pSourceSurf
) EngUnlockSurface(pSourceSurf
);
651 if (hSourceBitmap
) EngDeleteSurface((HSURF
)hSourceBitmap
);
652 if (pMaskSurf
) EngUnlockSurface(pMaskSurf
);
653 if (hMaskBitmap
) EngDeleteSurface((HSURF
)hMaskBitmap
);
654 if (pDC
) DC_UnlockDc(pDC
);
655 ExFreePoolWithTag(pbmiSafe
, 'pmTG');
661 /* Converts a device-dependent bitmap to a DIB */
664 GreGetDIBitsInternal(
675 BITMAPCOREINFO
* pbmci
= NULL
;
676 PSURFACE psurf
= NULL
;
686 DPRINT("Entered GreGetDIBitsInternal()\n");
688 if ((Usage
&& Usage
!= DIB_PAL_COLORS
) || !Info
|| !hBitmap
)
691 colorPtr
= (LPBYTE
)Info
+ Info
->bmiHeader
.biSize
;
694 bitmap_type
= DIB_GetBitmapInfo(&Info
->bmiHeader
,
701 if(bitmap_type
== -1)
703 DPRINT("Wrong bitmap format\n");
704 EngSetLastError(ERROR_INVALID_PARAMETER
);
707 else if(bitmap_type
== 0)
709 /* We need a BITMAPINFO to create a DIB, but we have to fill
710 * the BITMAPCOREINFO we're provided */
711 pbmci
= (BITMAPCOREINFO
*)Info
;
712 Info
= DIB_ConvertBitmapInfo((BITMAPINFO
*)pbmci
, Usage
);
715 DPRINT1("Error, could not convert the BITMAPCOREINFO!\n");
718 rgbQuads
= Info
->bmiColors
;
721 pDC
= DC_LockDc(hDC
);
722 if (pDC
== NULL
|| pDC
->dctype
== DC_TYPE_INFO
)
728 /* Get a pointer to the source bitmap object */
729 psurf
= SURFACE_ShareLockSurface(hBitmap
);
736 /* Fill in the structure */
739 case 0: /* Only info */
740 Info
->bmiHeader
.biWidth
= psurf
->SurfObj
.sizlBitmap
.cx
;
741 Info
->bmiHeader
.biHeight
= (psurf
->SurfObj
.fjBitmap
& BMF_TOPDOWN
) ?
742 -psurf
->SurfObj
.sizlBitmap
.cy
:
743 psurf
->SurfObj
.sizlBitmap
.cy
;;
744 Info
->bmiHeader
.biPlanes
= 1;
745 Info
->bmiHeader
.biBitCount
= BitsPerFormat(psurf
->SurfObj
.iBitmapFormat
);
746 Info
->bmiHeader
.biSizeImage
= DIB_GetDIBImageBytes( Info
->bmiHeader
.biWidth
,
747 Info
->bmiHeader
.biHeight
,
748 Info
->bmiHeader
.biBitCount
);
750 if ((Info
->bmiHeader
.biBitCount
== 16) ||
751 (Info
->bmiHeader
.biBitCount
== 32))
753 Info
->bmiHeader
.biCompression
= BI_BITFIELDS
;
757 Info
->bmiHeader
.biCompression
= BI_RGB
;
759 Info
->bmiHeader
.biXPelsPerMeter
= 0;
760 Info
->bmiHeader
.biYPelsPerMeter
= 0;
761 Info
->bmiHeader
.biClrUsed
= 0;
762 Info
->bmiHeader
.biClrImportant
= 0;
763 ScanLines
= abs(Info
->bmiHeader
.biHeight
);
769 Info
->bmiHeader
.biClrUsed
= 0;
771 /* If the bitmap if a DIB section and has the same format than what
772 * we're asked, go ahead! */
773 if((psurf
->hSecure
) &&
774 (BitsPerFormat(psurf
->SurfObj
.iBitmapFormat
) == bpp
))
776 if(Usage
== DIB_RGB_COLORS
)
778 ULONG colors
= min(psurf
->ppal
->NumColors
, 256);
779 if(colors
!= 256) Info
->bmiHeader
.biClrUsed
= colors
;
780 for(i
= 0; i
< colors
; i
++)
782 rgbQuads
[i
].rgbRed
= psurf
->ppal
->IndexedColors
[i
].peRed
;
783 rgbQuads
[i
].rgbGreen
= psurf
->ppal
->IndexedColors
[i
].peGreen
;
784 rgbQuads
[i
].rgbBlue
= psurf
->ppal
->IndexedColors
[i
].peBlue
;
785 rgbQuads
[i
].rgbReserved
= 0;
790 for(i
= 0; i
< 256; i
++)
791 ((WORD
*)rgbQuads
)[i
] = i
;
796 if(Usage
== DIB_PAL_COLORS
)
798 for(i
= 0; i
< 256; i
++)
800 ((WORD
*)rgbQuads
)[i
] = i
;
803 else if(bpp
> 1 && bpp
== BitsPerFormat(psurf
->SurfObj
.iBitmapFormat
))
805 /* For color DDBs in native depth (mono DDBs always have
806 a black/white palette):
807 Generate the color map from the selected palette */
808 PPALETTE pDcPal
= PALETTE_ShareLockPalette(pDC
->dclevel
.hpal
);
814 for (i
= 0; i
< pDcPal
->NumColors
; i
++)
816 rgbQuads
[i
].rgbRed
= pDcPal
->IndexedColors
[i
].peRed
;
817 rgbQuads
[i
].rgbGreen
= pDcPal
->IndexedColors
[i
].peGreen
;
818 rgbQuads
[i
].rgbBlue
= pDcPal
->IndexedColors
[i
].peBlue
;
819 rgbQuads
[i
].rgbReserved
= 0;
821 PALETTE_ShareUnlockPalette(pDcPal
);
828 rgbQuads
[0].rgbRed
= rgbQuads
[0].rgbGreen
= rgbQuads
[0].rgbBlue
= 0;
829 rgbQuads
[0].rgbReserved
= 0;
830 rgbQuads
[1].rgbRed
= rgbQuads
[1].rgbGreen
= rgbQuads
[1].rgbBlue
= 0xff;
831 rgbQuads
[1].rgbReserved
= 0;
835 RtlCopyMemory(rgbQuads
, EGAColorsQuads
, sizeof(EGAColorsQuads
));
842 memcpy(rgbQuads
, DefLogPaletteQuads
,
843 10 * sizeof(RGBQUAD
));
844 memcpy(rgbQuads
+ 246, DefLogPaletteQuads
+ 10,
845 10 * sizeof(RGBQUAD
));
846 color
= rgbQuads
+ 10;
847 for(r
= 0; r
<= 5; r
++) /* FIXME */
849 for(g
= 0; g
<= 5; g
++)
851 for(b
= 0; b
<= 5; b
++)
853 color
->rgbRed
= (r
* 0xff) / 5;
854 color
->rgbGreen
= (g
* 0xff) / 5;
855 color
->rgbBlue
= (b
* 0xff) / 5;
856 color
->rgbReserved
= 0;
868 if (Info
->bmiHeader
.biCompression
== BI_BITFIELDS
)
870 ((PDWORD
)Info
->bmiColors
)[0] = 0x7c00;
871 ((PDWORD
)Info
->bmiColors
)[1] = 0x03e0;
872 ((PDWORD
)Info
->bmiColors
)[2] = 0x001f;
877 if (Info
->bmiHeader
.biCompression
== BI_BITFIELDS
)
881 ((PDWORD
)Info
->bmiColors
)[0] = psurf
->ppal
->RedMask
;
882 ((PDWORD
)Info
->bmiColors
)[1] = psurf
->ppal
->GreenMask
;
883 ((PDWORD
)Info
->bmiColors
)[2] = psurf
->ppal
->BlueMask
;
887 ((PDWORD
)Info
->bmiColors
)[0] = 0xf800;
888 ((PDWORD
)Info
->bmiColors
)[1] = 0x07e0;
889 ((PDWORD
)Info
->bmiColors
)[2] = 0x001f;
896 if (Info
->bmiHeader
.biCompression
== BI_BITFIELDS
)
900 ((PDWORD
)Info
->bmiColors
)[0] = psurf
->ppal
->RedMask
;
901 ((PDWORD
)Info
->bmiColors
)[1] = psurf
->ppal
->GreenMask
;
902 ((PDWORD
)Info
->bmiColors
)[2] = psurf
->ppal
->BlueMask
;
906 ((PDWORD
)Info
->bmiColors
)[0] = 0xff0000;
907 ((PDWORD
)Info
->bmiColors
)[1] = 0x00ff00;
908 ((PDWORD
)Info
->bmiColors
)[2] = 0x0000ff;
913 Info
->bmiHeader
.biSizeImage
= DIB_GetDIBImageBytes(width
, height
, bpp
);
915 if(Bits
&& ScanLines
)
917 /* Create a DIBSECTION, blt it, profit */
926 if (StartScan
> (ULONG
)psurf
->SurfObj
.sizlBitmap
.cy
)
933 ScanLines
= min(ScanLines
, psurf
->SurfObj
.sizlBitmap
.cy
- StartScan
);
937 Info
->bmiHeader
.biWidth
= psurf
->SurfObj
.sizlBitmap
.cx
;
938 Info
->bmiHeader
.biHeight
= (height
< 0) ?
939 -(LONG
)ScanLines
: ScanLines
;
941 hBmpDest
= DIB_CreateDIBSection(pDC
, Info
, Usage
, &pDIBits
, NULL
, 0, 0);
943 Info
->bmiHeader
.biWidth
= width
;
944 Info
->bmiHeader
.biHeight
= height
;
948 DPRINT1("Unable to create a DIB Section!\n");
949 EngSetLastError(ERROR_INVALID_PARAMETER
);
954 psurfDest
= SURFACE_ShareLockSurface(hBmpDest
);
956 RECTL_vSetRect(&rcDest
, 0, 0, psurf
->SurfObj
.sizlBitmap
.cx
, ScanLines
);
964 if(ScanLines
<= StartScan
)
967 SURFACE_ShareUnlockSurface(psurfDest
);
968 GreDeleteObject(hBmpDest
);
972 ScanLines
-= StartScan
;
976 srcPoint
.y
= StartScan
;
979 EXLATEOBJ_vInitialize(&exlo
, psurf
->ppal
, psurfDest
->ppal
, 0xffffff, 0xffffff, 0);
981 ret
= IntEngCopyBits(&psurfDest
->SurfObj
,
988 SURFACE_ShareUnlockSurface(psurfDest
);
994 RtlCopyMemory(Bits
, pDIBits
, DIB_GetDIBImageBytes (width
, ScanLines
, bpp
));
997 GreDeleteObject(hBmpDest
);
998 EXLATEOBJ_vCleanup(&exlo
);
1000 else ScanLines
= abs(height
);
1004 if(pDC
) DC_UnlockDc(pDC
);
1005 if(psurf
) SURFACE_ShareUnlockSurface(psurf
);
1006 if(pbmci
) DIB_FreeConvertedBitmapInfo(Info
, (BITMAPINFO
*)pbmci
, Usage
);
1011 _Success_(return!=0)
1015 NtGdiGetDIBitsInternal(
1018 _In_ UINT iStartScan
,
1020 _Out_writes_bytes_opt_(cjMaxBits
) LPBYTE pjBits
,
1021 _Inout_ LPBITMAPINFO pbmi
,
1023 _In_ UINT cjMaxBits
,
1024 _In_ UINT cjMaxInfo
)
1026 PBITMAPINFO pbmiSafe
;
1027 HANDLE hSecure
= NULL
;
1031 /* Check for bad iUsage */
1032 if (iUsage
> 2) return 0;
1034 /* Check if the size of the bitmap info is large enough */
1035 if (cjMaxInfo
< sizeof(BITMAPCOREHEADER
))
1040 /* Use maximum size */
1041 cjMaxInfo
= min(cjMaxInfo
, sizeof(BITMAPV5HEADER
) + 256 * sizeof(RGBQUAD
));
1043 // HACK: the underlying code sucks and doesn't care for the size, so we
1044 // give it the maximum ever needed
1045 cjAlloc
= sizeof(BITMAPV5HEADER
) + 256 * sizeof(RGBQUAD
);
1047 /* Allocate a buffer the bitmapinfo */
1048 pbmiSafe
= ExAllocatePoolWithTag(PagedPool
, cjAlloc
, 'imBG');
1058 /* Probe and copy the BITMAPINFO */
1059 ProbeForRead(pbmi
, cjMaxInfo
, 1);
1060 RtlCopyMemory(pbmiSafe
, pbmi
, cjMaxInfo
);
1062 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
1064 _SEH2_YIELD(goto cleanup
;)
1068 /* Check if the header size is large enough */
1069 if ((pbmiSafe
->bmiHeader
.biSize
< sizeof(BITMAPCOREHEADER
)) ||
1070 (pbmiSafe
->bmiHeader
.biSize
> cjMaxInfo
))
1075 /* Check if the caller provided bitmap bits */
1078 /* Secure the user mode memory */
1079 hSecure
= EngSecureMem(pjBits
, cjMaxBits
);
1086 /* Now call the internal function */
1087 iResult
= GreGetDIBitsInternal(hdc
,
1097 /* Check for success */
1100 /* Use SEH to copy back to user mode */
1103 /* Copy the data back */
1104 cjMaxInfo
= min(cjMaxInfo
, (UINT
)DIB_BitmapInfoSize(pbmiSafe
, (WORD
)iUsage
));
1105 ProbeForWrite(pbmi
, cjMaxInfo
, 1);
1106 RtlCopyMemory(pbmi
, pbmiSafe
, cjMaxInfo
);
1108 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
1117 if (hSecure
) EngUnsecureMem(hSecure
);
1118 ExFreePoolWithTag(pbmiSafe
, 'imBG');
1127 NtGdiStretchDIBitsInternal(
1137 IN OPTIONAL LPBYTE pjInit
,
1138 IN LPBITMAPINFO pbmi
,
1140 IN DWORD dwRop
, // MS ntgdi.h says dwRop4(?)
1145 BOOL bResult
= FALSE
;
1150 PSURFACE psurfTmp
= 0, psurfDst
= 0;
1151 PPALETTE ppalDIB
= 0;
1155 if (!(pdc
= DC_LockDc(hdc
)))
1157 EngSetLastError(ERROR_INVALID_HANDLE
);
1161 /* Check for info / mem DC without surface */
1162 if (!pdc
->dclevel
.pSurface
)
1169 /* Transform dest size */
1172 IntLPtoDP(pdc
, (POINTL
*)&sizel
, 1);
1175 /* Check if we can use NtGdiSetDIBitsToDeviceInternal */
1176 if ((sizel
.cx
== cxSrc
) && (sizel
.cy
== cySrc
) && (dwRop
== SRCCOPY
))
1179 return NtGdiSetDIBitsToDeviceInternal(hdc
,
1197 if (pjInit
&& (cjMaxBits
> 0))
1199 pvBits
= ExAllocatePoolWithTag(PagedPool
, cjMaxBits
, 'pmeT');
1207 ProbeForRead(pjInit
, cjMaxBits
, 1);
1208 RtlCopyMemory(pvBits
, pjInit
, cjMaxBits
);
1210 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
1212 ExFreePoolWithTag(pvBits
, 'pmeT');
1213 _SEH2_YIELD(return 0);
1222 /* FIXME: Locking twice is cheesy, coord tranlation in UM will fix it */
1223 if (!(pdc
= DC_LockDc(hdc
)))
1225 DPRINT1("Could not lock dc\n");
1226 EngSetLastError(ERROR_INVALID_HANDLE
);
1230 /* Calculate source and destination rect */
1233 rcSrc
.right
= xSrc
+ abs(cxSrc
);
1234 rcSrc
.bottom
= ySrc
+ abs(cySrc
);
1237 rcDst
.right
= rcDst
.left
+ cxDst
;
1238 rcDst
.bottom
= rcDst
.top
+ cyDst
;
1239 IntLPtoDP(pdc
, (POINTL
*)&rcDst
, 2);
1240 RECTL_vOffsetRect(&rcDst
, pdc
->ptlDCOrig
.x
, pdc
->ptlDCOrig
.y
);
1242 hbmTmp
= GreCreateBitmapEx(pbmi
->bmiHeader
.biWidth
,
1243 abs(pbmi
->bmiHeader
.biHeight
),
1245 BitmapFormat(pbmi
->bmiHeader
.biBitCount
,
1246 pbmi
->bmiHeader
.biCompression
),
1247 pbmi
->bmiHeader
.biHeight
< 0 ? BMF_TOPDOWN
: 0,
1248 pbmi
->bmiHeader
.biSizeImage
,
1258 psurfTmp
= SURFACE_ShareLockSurface(hbmTmp
);
1265 /* Create a palette for the DIB */
1266 ppalDIB
= CreateDIBPalette(pbmi
, pdc
, dwUsage
);
1273 /* Prepare DC for blit */
1274 DC_vPrepareDCsForBlit(pdc
, &rcDst
, NULL
, NULL
);
1276 psurfDst
= pdc
->dclevel
.pSurface
;
1278 /* Initialize XLATEOBJ */
1279 EXLATEOBJ_vInitialize(&exlo
,
1282 RGB(0xff, 0xff, 0xff),
1283 pdc
->pdcattr
->crBackgroundClr
,
1284 pdc
->pdcattr
->crForegroundClr
);
1286 /* Perform the stretch operation */
1287 bResult
= IntEngStretchBlt(&psurfDst
->SurfObj
,
1296 &pdc
->eboFill
.BrushObject
,
1298 WIN32_ROP3_TO_ENG_ROP4(dwRop
));
1301 DC_vFinishBlit(pdc
, NULL
);
1302 EXLATEOBJ_vCleanup(&exlo
);
1304 if (ppalDIB
) PALETTE_ShareUnlockPalette(ppalDIB
);
1305 if (psurfTmp
) SURFACE_ShareUnlockSurface(psurfTmp
);
1306 if (hbmTmp
) GreDeleteObject(hbmTmp
);
1307 if (pdc
) DC_UnlockDc(pdc
);
1308 if (pvBits
) ExFreePoolWithTag(pvBits
, 'pmeT');
1331 ULONG BmpFormat
= 0;
1334 BmpFormat
= BitmapFormat(planes
* bpp
, compression
);
1336 // Check if we should create a monochrome or color bitmap. We create a monochrome bitmap only if it has exactly 2
1337 // colors, which are black followed by white, nothing else. In all other cases, we create a color bitmap.
1339 if (BmpFormat
!= BMF_1BPP
) fColor
= TRUE
;
1340 else if ((coloruse
> DIB_RGB_COLORS
) || ((init
& CBM_INIT
) == 0) || !data
) fColor
= FALSE
;
1343 const RGBQUAD
*rgb
= (RGBQUAD
*)((PBYTE
)data
+ data
->bmiHeader
.biSize
);
1344 DWORD col
= RGB(rgb
->rgbRed
, rgb
->rgbGreen
, rgb
->rgbBlue
);
1346 // Check if the first color of the colormap is black
1347 if (col
== RGB(0, 0, 0))
1350 col
= RGB(rgb
->rgbRed
, rgb
->rgbGreen
, rgb
->rgbBlue
);
1352 // If the second color is white, create a monochrome bitmap
1353 fColor
= (col
!= RGB(0xff,0xff,0xff));
1358 // Now create the bitmap
1361 if (init
& CBM_CREATDIB
)
1366 /* Undocumented flag which creates a DDB of the format specified by the bitmap info. */
1367 handle
= IntCreateCompatibleBitmap(Dc
, width
, height
, planes
, bpp
);
1370 /* The palette must also match the given data */
1371 Surface
= SURFACE_ShareLockSurface(handle
);
1373 Palette
= CreateDIBPalette(data
, Dc
, coloruse
);
1375 SURFACE_vSetPalette(Surface
, Palette
);
1377 PALETTE_ShareUnlockPalette(Palette
);
1378 SURFACE_ShareUnlockSurface(Surface
);
1382 /* Create a regular compatible bitmap, in the same format as the device */
1383 handle
= IntCreateCompatibleBitmap(Dc
, width
, height
, 0, 0);
1388 handle
= GreCreateBitmap(width
,
1398 if ((NULL
!= handle
) && (CBM_INIT
& init
))
1400 IntSetDIBits(Dc
, handle
, 0, height
, bits
, cjMaxBits
, data
, coloruse
);
1406 // The CreateDIBitmap function creates a device-dependent bitmap (DDB) from a DIB and, optionally, sets the bitmap bits
1407 // The DDB that is created will be whatever bit depth your reference DC is
1410 NtGdiCreateDIBitmapInternal(
1415 IN OPTIONAL LPBYTE pjInit
,
1416 IN OPTIONAL LPBITMAPINFO pbmi
,
1418 IN UINT cjMaxInitInfo
,
1423 NTSTATUS Status
= STATUS_SUCCESS
;
1424 PBYTE safeBits
= NULL
;
1425 HBITMAP hbmResult
= NULL
;
1427 if(pjInit
&& (fInit
& CBM_INIT
))
1429 if (cjMaxBits
== 0) return NULL
;
1430 safeBits
= ExAllocatePoolWithTag(PagedPool
, cjMaxBits
, TAG_DIB
);
1433 EngSetLastError(ERROR_NOT_ENOUGH_MEMORY
);
1440 if(pbmi
) ProbeForRead(pbmi
, cjMaxInitInfo
, 1);
1441 if(pjInit
&& (fInit
& CBM_INIT
))
1443 ProbeForRead(pjInit
, cjMaxBits
, 1);
1444 RtlCopyMemory(safeBits
, pjInit
, cjMaxBits
);
1447 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
1449 Status
= _SEH2_GetExceptionCode();
1453 if(!NT_SUCCESS(Status
))
1455 SetLastNtError(Status
);
1459 hbmResult
= GreCreateDIBitmapInternal(hDc
,
1471 if (safeBits
) ExFreePoolWithTag(safeBits
, TAG_DIB
);
1477 GreCreateDIBitmapInternal(
1482 IN OPTIONAL LPBYTE pjInit
,
1483 IN OPTIONAL PBITMAPINFO pbmi
,
1495 if (!hDc
) /* 1bpp monochrome bitmap */
1497 // Should use System Bitmap DC hSystemBM, with CreateCompatibleDC for this.
1498 hdcDest
= NtGdiCreateCompatibleDC(0);
1509 Dc
= DC_LockDc(hdcDest
);
1512 EngSetLastError(ERROR_INVALID_HANDLE
);
1515 /* It's OK to set bpp=0 here, as IntCreateDIBitmap will create a compatible Bitmap
1516 * if bpp != 1 and ignore the real value that was passed */
1519 if (pbmi
->bmiHeader
.biSize
== sizeof(BITMAPCOREHEADER
))
1521 BITMAPCOREHEADER
* CoreHeader
= (BITMAPCOREHEADER
*)&pbmi
->bmiHeader
;
1522 bpp
= CoreHeader
->bcBitCount
;
1523 planes
= CoreHeader
->bcPlanes
? CoreHeader
->bcPlanes
: 1;
1524 compression
= BI_RGB
;
1528 bpp
= pbmi
->bmiHeader
.biBitCount
;
1529 planes
= pbmi
->bmiHeader
.biPlanes
? pbmi
->bmiHeader
.biPlanes
: 1;
1530 compression
= pbmi
->bmiHeader
.biCompression
;
1539 Bmp
= IntCreateDIBitmap(Dc
, cx
, cy
, planes
, bpp
, compression
, fInit
, pjInit
, cjMaxBits
, pbmi
, iUsage
);
1544 NtGdiDeleteObjectApp(hdcDest
);
1551 GreCreateDIBitmapFromPackedDIB(
1552 _In_reads_(cjPackedDIB
)PVOID pvPackedDIB
,
1553 _In_ UINT cjPackedDIB
,
1558 UINT cjInfo
, cjBits
;
1561 /* We only support BITMAPINFOHEADER, make sure the size is ok */
1562 if (cjPackedDIB
< sizeof(BITMAPINFOHEADER
))
1567 /* The packed DIB starts with the BITMAPINFOHEADER */
1570 if (cjPackedDIB
< pbmi
->bmiHeader
.biSize
)
1575 /* Calculate the info size and make sure the packed DIB is large enough */
1576 cjInfo
= DIB_BitmapInfoSize(pbmi
, uUsage
);
1577 if (cjPackedDIB
<= cjInfo
)
1582 /* The bitmap bits start after the header */
1583 pjBits
= (PBYTE
)pvPackedDIB
+ cjInfo
;
1584 cjBits
= cjPackedDIB
- cjInfo
;
1586 hbm
= GreCreateDIBitmapInternal(NULL
,
1587 pbmi
->bmiHeader
.biWidth
,
1588 abs(pbmi
->bmiHeader
.biHeight
),
1589 CBM_INIT
| CBM_CREATDIB
,
1602 NtGdiCreateDIBSection(
1604 IN OPTIONAL HANDLE hSection
,
1610 IN ULONG_PTR dwColorSpace
,
1613 HBITMAP hbitmap
= 0;
1615 BOOL bDesktopDC
= FALSE
;
1616 NTSTATUS Status
= STATUS_SUCCESS
;
1618 if (!bmi
) return hbitmap
; // Make sure.
1622 ProbeForRead(&bmi
->bmiHeader
.biSize
, sizeof(DWORD
), 1);
1623 ProbeForRead(bmi
, bmi
->bmiHeader
.biSize
, 1);
1624 ProbeForRead(bmi
, DIB_BitmapInfoSize(bmi
, (WORD
)Usage
), 1);
1626 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
1628 Status
= _SEH2_GetExceptionCode();
1632 if(!NT_SUCCESS(Status
))
1634 SetLastNtError(Status
);
1638 // If the reference hdc is null, take the desktop dc
1641 hDC
= NtGdiCreateCompatibleDC(0);
1645 if ((dc
= DC_LockDc(hDC
)))
1647 hbitmap
= DIB_CreateDIBSection(dc
,
1658 EngSetLastError(ERROR_INVALID_HANDLE
);
1662 NtGdiDeleteObjectApp(hDC
);
1669 DIB_CreateDIBSection(
1671 CONST BITMAPINFO
*bmi
,
1679 SURFACE
*bmp
= NULL
;
1680 void *mapBits
= NULL
;
1681 PPALETTE ppalDIB
= NULL
;
1683 // Fill BITMAP32 structure with DIB data
1684 CONST BITMAPINFOHEADER
*bi
= &bmi
->bmiHeader
;
1691 DPRINT("format (%ld,%ld), planes %u, bpp %u, size %lu, colors %lu (%s)\n",
1692 bi
->biWidth
, bi
->biHeight
, bi
->biPlanes
, bi
->biBitCount
,
1693 bi
->biSizeImage
, bi
->biClrUsed
, usage
== DIB_PAL_COLORS
? "PAL" : "RGB");
1695 /* CreateDIBSection should fail for compressed formats */
1696 if (bi
->biCompression
== BI_RLE4
|| bi
->biCompression
== BI_RLE8
)
1698 DPRINT1("no compressed format allowed\n");
1699 return (HBITMAP
)NULL
;
1702 effHeight
= bi
->biHeight
>= 0 ? bi
->biHeight
: -bi
->biHeight
;
1704 bm
.bmWidth
= bi
->biWidth
;
1705 bm
.bmHeight
= effHeight
;
1706 bm
.bmWidthBytes
= ovr_pitch
? ovr_pitch
: WIDTH_BYTES_ALIGN32(bm
.bmWidth
, bi
->biBitCount
);
1708 bm
.bmPlanes
= bi
->biPlanes
;
1709 bm
.bmBitsPixel
= bi
->biBitCount
;
1712 // Get storage location for DIB bits. Only use biSizeImage if it's valid and
1713 // we're dealing with a compressed bitmap. Otherwise, use width * height.
1714 totalSize
= (bi
->biSizeImage
&& (bi
->biCompression
!= BI_RGB
) && (bi
->biCompression
!= BI_BITFIELDS
))
1715 ? bi
->biSizeImage
: (ULONG
)(bm
.bmWidthBytes
* effHeight
);
1719 SYSTEM_BASIC_INFORMATION Sbi
;
1722 LARGE_INTEGER SectionOffset
;
1725 Status
= ZwQuerySystemInformation(SystemBasicInformation
,
1729 if (!NT_SUCCESS(Status
))
1731 DPRINT1("ZwQuerySystemInformation failed (0x%lx)\n", Status
);
1735 mapOffset
= offset
- (offset
% Sbi
.AllocationGranularity
);
1736 mapSize
= totalSize
+ (offset
- mapOffset
);
1738 SectionOffset
.LowPart
= mapOffset
;
1739 SectionOffset
.HighPart
= 0;
1741 Status
= ZwMapViewOfSection(section
,
1751 if (!NT_SUCCESS(Status
))
1753 DPRINT1("ZwMapViewOfSection failed (0x%lx)\n", Status
);
1754 EngSetLastError(ERROR_INVALID_PARAMETER
);
1758 if (mapBits
) bm
.bmBits
= (char *)mapBits
+ (offset
- mapOffset
);
1760 else if (ovr_pitch
&& offset
)
1761 bm
.bmBits
= (LPVOID
) offset
;
1765 bm
.bmBits
= EngAllocUserMem(totalSize
, 0);
1768 DPRINT1("Failed to allocate memory\n");
1773 // hSecure = MmSecureVirtualMemory(bm.bmBits, totalSize, PAGE_READWRITE);
1774 hSecure
= (HANDLE
)0x1; // HACK OF UNIMPLEMENTED KERNEL STUFF !!!!
1777 // Create Device Dependent Bitmap and add DIB pointer
1778 //Size.cx = bm.bmWidth;
1779 //Size.cy = abs(bm.bmHeight);
1780 res
= GreCreateBitmapEx(bm
.bmWidth
,
1783 BitmapFormat(bi
->biBitCount
* bi
->biPlanes
, bi
->biCompression
),
1784 BMF_DONTCACHE
| BMF_USERMEM
| BMF_NOZEROINIT
|
1785 ((bi
->biHeight
< 0) ? BMF_TOPDOWN
: 0),
1791 DPRINT1("GreCreateBitmapEx failed\n");
1792 EngSetLastError(ERROR_NO_SYSTEM_RESOURCES
);
1795 bmp
= SURFACE_ShareLockSurface(res
); // HACK
1798 DPRINT1("SURFACE_LockSurface failed\n");
1799 EngSetLastError(ERROR_INVALID_HANDLE
);
1803 /* WINE NOTE: WINE makes use of a colormap, which is a color translation
1804 table between the DIB and the X physical device. Obviously,
1805 this is left out of the ReactOS implementation. Instead,
1806 we call NtGdiSetDIBColorTable. */
1807 bmp
->hDIBSection
= section
;
1808 bmp
->hSecure
= hSecure
;
1809 bmp
->dwOffset
= offset
;
1810 bmp
->flags
= API_BITMAP
;
1811 bmp
->biClrImportant
= bi
->biClrImportant
;
1813 /* Create a palette for the DIB */
1814 ppalDIB
= CreateDIBPalette(bmi
, dc
, usage
);
1816 // Clean up in case of errors
1818 if (!res
|| !bmp
|| !bm
.bmBits
|| !ppalDIB
)
1820 DPRINT("Got an error res=%p, bmp=%p, bm.bmBits=%p\n", res
, bmp
, bm
.bmBits
);
1823 // MmUnsecureVirtualMemory(hSecure); // FIXME: Implement this!
1826 ZwUnmapViewOfSection(NtCurrentProcess(), mapBits
);
1830 EngFreeUserMem(bm
.bmBits
), bm
.bmBits
= NULL
;
1835 SURFACE_ShareUnlockSurface(bmp
);
1841 GreDeleteObject(res
);
1847 PALETTE_ShareUnlockPalette(ppalDIB
);
1853 /* If we're here, everything went fine */
1854 SURFACE_vSetPalette(bmp
, ppalDIB
);
1855 PALETTE_ShareUnlockPalette(ppalDIB
);
1856 SURFACE_ShareUnlockSurface(bmp
);
1859 // Return BITMAP handle and storage location
1860 if (NULL
!= bm
.bmBits
&& NULL
!= bits
)
1868 /***********************************************************************
1871 * Get the info from a bitmap header.
1872 * Return 0 for COREHEADER, 1 for INFOHEADER, -1 for error.
1876 DIB_GetBitmapInfo( const BITMAPINFOHEADER
*header
, LONG
*width
,
1877 LONG
*height
, WORD
*planes
, WORD
*bpp
, DWORD
*compr
, DWORD
*size
)
1879 if (header
->biSize
== sizeof(BITMAPCOREHEADER
))
1881 const BITMAPCOREHEADER
*core
= (const BITMAPCOREHEADER
*)header
;
1882 *width
= core
->bcWidth
;
1883 *height
= core
->bcHeight
;
1884 *planes
= core
->bcPlanes
;
1885 *bpp
= core
->bcBitCount
;
1890 if (header
->biSize
>= sizeof(BITMAPINFOHEADER
)) /* Assume BITMAPINFOHEADER */
1892 *width
= header
->biWidth
;
1893 *height
= header
->biHeight
;
1894 *planes
= header
->biPlanes
;
1895 *bpp
= header
->biBitCount
;
1896 *compr
= header
->biCompression
;
1897 *size
= header
->biSizeImage
;
1900 DPRINT1("(%u): unknown/wrong size for header\n", header
->biSize
);
1904 /***********************************************************************
1905 * DIB_GetDIBImageBytes
1907 * Return the number of bytes used to hold the image in a DIB bitmap.
1908 * 11/16/1999 (RJJ) lifted from wine
1911 INT APIENTRY
DIB_GetDIBImageBytes(INT width
, INT height
, INT depth
)
1913 return WIDTH_BYTES_ALIGN32(width
, depth
) * (height
< 0 ? -height
: height
);
1916 /***********************************************************************
1917 * DIB_BitmapInfoSize
1919 * Return the size of the bitmap info structure including color table.
1920 * 11/16/1999 (RJJ) lifted from wine
1923 INT FASTCALL
DIB_BitmapInfoSize(const BITMAPINFO
* info
, WORD coloruse
)
1925 unsigned int colors
, size
, masks
= 0;
1926 unsigned int colorsize
;
1928 colorsize
= (coloruse
== DIB_RGB_COLORS
) ? sizeof(RGBQUAD
) :
1929 (coloruse
== DIB_PAL_INDICES
) ? 0 :
1932 if (info
->bmiHeader
.biSize
== sizeof(BITMAPCOREHEADER
))
1934 const BITMAPCOREHEADER
*core
= (const BITMAPCOREHEADER
*)info
;
1935 colors
= (core
->bcBitCount
<= 8) ? 1 << core
->bcBitCount
: 0;
1936 return sizeof(BITMAPCOREHEADER
) + colors
* colorsize
;
1938 else /* Assume BITMAPINFOHEADER */
1940 colors
= info
->bmiHeader
.biClrUsed
;
1941 if (colors
> 256) colors
= 256;
1942 if (!colors
&& (info
->bmiHeader
.biBitCount
<= 8))
1943 colors
= 1 << info
->bmiHeader
.biBitCount
;
1944 if (info
->bmiHeader
.biCompression
== BI_BITFIELDS
) masks
= 3;
1945 size
= max( info
->bmiHeader
.biSize
, sizeof(BITMAPINFOHEADER
) + masks
* sizeof(DWORD
) );
1946 return size
+ colors
* colorsize
;
1952 DIB_MapPaletteColors(PPALETTE ppalDc
, CONST BITMAPINFO
* lpbmi
)
1959 if (!(ppalDc
->flFlags
& PAL_INDEXED
))
1964 nNumColors
= 1 << lpbmi
->bmiHeader
.biBitCount
;
1965 if (lpbmi
->bmiHeader
.biClrUsed
)
1967 nNumColors
= min(nNumColors
, lpbmi
->bmiHeader
.biClrUsed
);
1970 ppalNew
= PALETTE_AllocPalWithHandle(PAL_INDEXED
, nNumColors
, NULL
, 0, 0, 0);
1971 if (ppalNew
== NULL
)
1973 DPRINT1("Could not allocate palette\n");
1977 lpIndex
= (USHORT
*)((PBYTE
)lpbmi
+ lpbmi
->bmiHeader
.biSize
);
1979 for (i
= 0; i
< nNumColors
; i
++)
1981 ULONG iColorIndex
= *lpIndex
% ppalDc
->NumColors
;
1982 ppalNew
->IndexedColors
[i
] = ppalDc
->IndexedColors
[iColorIndex
];
1986 hpal
= ppalNew
->BaseObject
.hHmgr
;
1987 PALETTE_UnlockPalette(ppalNew
);
1992 /* Converts a BITMAPCOREINFO to a BITMAPINFO structure,
1993 * or does nothing if it's already a BITMAPINFO (or V4 or V5) */
1996 DIB_ConvertBitmapInfo (CONST BITMAPINFO
* pbmi
, DWORD Usage
)
1998 CONST BITMAPCOREINFO
* pbmci
= (BITMAPCOREINFO
*)pbmi
;
1999 BITMAPINFO
* pNewBmi
;
2000 UINT numColors
= 0, ColorsSize
= 0;
2002 if(pbmi
->bmiHeader
.biSize
>= sizeof(BITMAPINFOHEADER
)) return (BITMAPINFO
*)pbmi
;
2003 if(pbmi
->bmiHeader
.biSize
!= sizeof(BITMAPCOREHEADER
)) return NULL
;
2005 if(pbmci
->bmciHeader
.bcBitCount
<= 8)
2007 numColors
= 1 << pbmci
->bmciHeader
.bcBitCount
;
2008 if(Usage
== DIB_PAL_COLORS
)
2010 ColorsSize
= numColors
* sizeof(WORD
);
2014 ColorsSize
= numColors
* sizeof(RGBQUAD
);
2017 else if (Usage
== DIB_PAL_COLORS
)
2019 /* Invalid at high-res */
2023 pNewBmi
= ExAllocatePoolWithTag(PagedPool
, sizeof(BITMAPINFOHEADER
) + ColorsSize
, TAG_DIB
);
2024 if(!pNewBmi
) return NULL
;
2026 RtlZeroMemory(pNewBmi
, sizeof(BITMAPINFOHEADER
) + ColorsSize
);
2028 pNewBmi
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
2029 pNewBmi
->bmiHeader
.biBitCount
= pbmci
->bmciHeader
.bcBitCount
;
2030 pNewBmi
->bmiHeader
.biWidth
= pbmci
->bmciHeader
.bcWidth
;
2031 pNewBmi
->bmiHeader
.biHeight
= pbmci
->bmciHeader
.bcHeight
;
2032 pNewBmi
->bmiHeader
.biPlanes
= pbmci
->bmciHeader
.bcPlanes
;
2033 pNewBmi
->bmiHeader
.biCompression
= BI_RGB
;
2034 pNewBmi
->bmiHeader
.biSizeImage
= DIB_GetDIBImageBytes(pNewBmi
->bmiHeader
.biWidth
,
2035 pNewBmi
->bmiHeader
.biHeight
,
2036 pNewBmi
->bmiHeader
.biBitCount
);
2038 if(Usage
== DIB_PAL_COLORS
)
2040 RtlCopyMemory(pNewBmi
->bmiColors
, pbmci
->bmciColors
, ColorsSize
);
2045 for(i
=0; i
<numColors
; i
++)
2047 pNewBmi
->bmiColors
[i
].rgbRed
= pbmci
->bmciColors
[i
].rgbtRed
;
2048 pNewBmi
->bmiColors
[i
].rgbGreen
= pbmci
->bmciColors
[i
].rgbtGreen
;
2049 pNewBmi
->bmiColors
[i
].rgbBlue
= pbmci
->bmciColors
[i
].rgbtBlue
;
2056 /* Frees a BITMAPINFO created with DIB_ConvertBitmapInfo */
2059 DIB_FreeConvertedBitmapInfo(BITMAPINFO
* converted
, BITMAPINFO
* orig
, DWORD usage
)
2061 BITMAPCOREINFO
* pbmci
;
2062 if(converted
== orig
)
2067 /* Caller don't want any conversion */
2068 ExFreePoolWithTag(converted
, TAG_DIB
);
2072 /* Perform inverse conversion */
2073 pbmci
= (BITMAPCOREINFO
*)orig
;
2075 ASSERT(pbmci
->bmciHeader
.bcSize
== sizeof(BITMAPCOREHEADER
));
2076 pbmci
->bmciHeader
.bcBitCount
= converted
->bmiHeader
.biBitCount
;
2077 pbmci
->bmciHeader
.bcWidth
= converted
->bmiHeader
.biWidth
;
2078 pbmci
->bmciHeader
.bcHeight
= converted
->bmiHeader
.biHeight
;
2079 pbmci
->bmciHeader
.bcPlanes
= converted
->bmiHeader
.biPlanes
;
2081 if(pbmci
->bmciHeader
.bcBitCount
<= 8)
2083 UINT numColors
= converted
->bmiHeader
.biClrUsed
;
2084 if(!numColors
) numColors
= 1 << pbmci
->bmciHeader
.bcBitCount
;
2085 if(usage
== DIB_PAL_COLORS
)
2087 RtlZeroMemory(pbmci
->bmciColors
, (1 << pbmci
->bmciHeader
.bcBitCount
) * sizeof(WORD
));
2088 RtlCopyMemory(pbmci
->bmciColors
, converted
->bmiColors
, numColors
* sizeof(WORD
));
2093 RtlZeroMemory(pbmci
->bmciColors
, (1 << pbmci
->bmciHeader
.bcBitCount
) * sizeof(RGBTRIPLE
));
2094 for(i
=0; i
<numColors
; i
++)
2096 pbmci
->bmciColors
[i
].rgbtRed
= converted
->bmiColors
[i
].rgbRed
;
2097 pbmci
->bmciColors
[i
].rgbtGreen
= converted
->bmiColors
[i
].rgbGreen
;
2098 pbmci
->bmciColors
[i
].rgbtBlue
= converted
->bmiColors
[i
].rgbBlue
;
2102 /* Now free it, it's not needed anymore */
2103 ExFreePoolWithTag(converted
, TAG_DIB
);