2 * ReactOS W32 Subsystem
3 * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 ReactOS Team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 static const RGBQUAD EGAColorsQuads
[16] = {
26 /* rgbBlue, rgbGreen, rgbRed, rgbReserved */
27 { 0x00, 0x00, 0x00, 0x00 },
28 { 0x00, 0x00, 0x80, 0x00 },
29 { 0x00, 0x80, 0x00, 0x00 },
30 { 0x00, 0x80, 0x80, 0x00 },
31 { 0x80, 0x00, 0x00, 0x00 },
32 { 0x80, 0x00, 0x80, 0x00 },
33 { 0x80, 0x80, 0x00, 0x00 },
34 { 0x80, 0x80, 0x80, 0x00 },
35 { 0xc0, 0xc0, 0xc0, 0x00 },
36 { 0x00, 0x00, 0xff, 0x00 },
37 { 0x00, 0xff, 0x00, 0x00 },
38 { 0x00, 0xff, 0xff, 0x00 },
39 { 0xff, 0x00, 0x00, 0x00 },
40 { 0xff, 0x00, 0xff, 0x00 },
41 { 0xff, 0xff, 0x00, 0x00 },
42 { 0xff, 0xff, 0xff, 0x00 }
45 static const RGBTRIPLE EGAColorsTriples
[16] = {
46 /* rgbBlue, rgbGreen, rgbRed */
65 static const RGBQUAD DefLogPaletteQuads
[20] = { /* Copy of Default Logical Palette */
66 /* rgbBlue, rgbGreen, rgbRed, rgbReserved */
67 { 0x00, 0x00, 0x00, 0x00 },
68 { 0x00, 0x00, 0x80, 0x00 },
69 { 0x00, 0x80, 0x00, 0x00 },
70 { 0x00, 0x80, 0x80, 0x00 },
71 { 0x80, 0x00, 0x00, 0x00 },
72 { 0x80, 0x00, 0x80, 0x00 },
73 { 0x80, 0x80, 0x00, 0x00 },
74 { 0xc0, 0xc0, 0xc0, 0x00 },
75 { 0xc0, 0xdc, 0xc0, 0x00 },
76 { 0xf0, 0xca, 0xa6, 0x00 },
77 { 0xf0, 0xfb, 0xff, 0x00 },
78 { 0xa4, 0xa0, 0xa0, 0x00 },
79 { 0x80, 0x80, 0x80, 0x00 },
80 { 0x00, 0x00, 0xf0, 0x00 },
81 { 0x00, 0xff, 0x00, 0x00 },
82 { 0x00, 0xff, 0xff, 0x00 },
83 { 0xff, 0x00, 0x00, 0x00 },
84 { 0xff, 0x00, 0xff, 0x00 },
85 { 0xff, 0xff, 0x00, 0x00 },
86 { 0xff, 0xff, 0xff, 0x00 }
89 static const RGBQUAD DefLogPaletteTriples
[20] = { /* Copy of Default Logical Palette */
90 /* rgbBlue, rgbGreen, rgbRed, rgbReserved */
100 { 0xf0, 0xca, 0xa6 },
101 { 0xf0, 0xfb, 0xff },
102 { 0xa4, 0xa0, 0xa0 },
103 { 0x80, 0x80, 0x80 },
104 { 0x00, 0x00, 0xf0 },
105 { 0x00, 0xff, 0x00 },
106 { 0x00, 0xff, 0xff },
107 { 0xff, 0x00, 0x00 },
108 { 0xff, 0x00, 0xff },
109 { 0xff, 0xff, 0x00 },
120 CONST RGBQUAD
*Colors
)
128 if (!(dc
= DC_LockDc(hDC
))) return 0;
129 if (dc
->dctype
== DC_TYPE_INFO
)
135 psurf
= dc
->dclevel
.pSurface
;
139 EngSetLastError(ERROR_INVALID_PARAMETER
);
143 if (psurf
->hSecure
== NULL
)
146 EngSetLastError(ERROR_INVALID_PARAMETER
);
150 biBitCount
= BitsPerFormat(psurf
->SurfObj
.iBitmapFormat
);
151 if (biBitCount
<= 8 && StartIndex
< (1 << biBitCount
))
153 if (StartIndex
+ Entries
> (1 << biBitCount
))
154 Entries
= (1 << biBitCount
) - StartIndex
;
156 if (psurf
->ppal
== NULL
)
159 EngSetLastError(ERROR_INVALID_HANDLE
);
163 PalGDI
= PALETTE_LockPalette(psurf
->ppal
->BaseObject
.hHmgr
);
165 for (Index
= StartIndex
;
166 Index
< StartIndex
+ Entries
&& Index
< PalGDI
->NumColors
;
169 PalGDI
->IndexedColors
[Index
].peRed
= Colors
[Index
- StartIndex
].rgbRed
;
170 PalGDI
->IndexedColors
[Index
].peGreen
= Colors
[Index
- StartIndex
].rgbGreen
;
171 PalGDI
->IndexedColors
[Index
].peBlue
= Colors
[Index
- StartIndex
].rgbBlue
;
173 PALETTE_UnlockPalette(PalGDI
);
178 /* Mark the brushes invalid */
179 dc
->pdcattr
->ulDirty_
|= DIRTY_FILL
|DIRTY_LINE
|DIRTY_BACKGROUND
|DIRTY_TEXT
;
197 UINT Index
, Count
= 0;
199 if (!(dc
= DC_LockDc(hDC
))) return 0;
200 if (dc
->dctype
== DC_TYPE_INFO
)
206 psurf
= dc
->dclevel
.pSurface
;
210 EngSetLastError(ERROR_INVALID_PARAMETER
);
214 if (psurf
->hSecure
== NULL
)
217 EngSetLastError(ERROR_INVALID_PARAMETER
);
224 if (ppal
->flFlags
& PAL_INDEXED
)
227 for (Index
= StartIndex
;
228 Index
< StartIndex
+ Entries
&& Index
< ppal
->NumColors
;
231 Colors
[Index
- StartIndex
].rgbRed
= ppal
->IndexedColors
[Index
].peRed
;
232 Colors
[Index
- StartIndex
].rgbGreen
= ppal
->IndexedColors
[Index
].peGreen
;
233 Colors
[Index
- StartIndex
].rgbBlue
= ppal
->IndexedColors
[Index
].peBlue
;
234 Colors
[Index
- StartIndex
].rgbReserved
= 0;
244 // Converts a DIB to a device-dependent bitmap
253 CONST BITMAPINFO
*bmi
,
256 HBITMAP SourceBitmap
;
257 PSURFACE psurfDst
, psurfSrc
;
264 SourceBitmap
= DIB_CreateDIBSection(DC
, bmi
, ColorUse
, &pvBits
, NULL
, 0, 0);
265 if (0 == SourceBitmap
)
267 DPRINT1("Error : Could not create a DIBSection.\n");
268 EngSetLastError(ERROR_NO_SYSTEM_RESOURCES
);
272 RtlCopyMemory(pvBits
, Bits
, DIB_GetDIBImageBytes(bmi
->bmiHeader
.biWidth
,
273 bmi
->bmiHeader
.biHeight
,
274 bmi
->bmiHeader
.biBitCount
));
276 psurfDst
= SURFACE_LockSurface(hBitmap
);
277 psurfSrc
= SURFACE_LockSurface(SourceBitmap
);
279 if(!(psurfSrc
&& psurfDst
))
281 DPRINT1("Error, could not lock surfaces\n");
285 rcDst
.top
= bmi
->bmiHeader
.biHeight
< 0 ?
286 abs(bmi
->bmiHeader
.biHeight
) - (ScanLines
+ StartScan
) : StartScan
;
288 rcDst
.bottom
= rcDst
.top
+ ScanLines
;
289 rcDst
.right
= psurfDst
->SurfObj
.sizlBitmap
.cx
;
294 EXLATEOBJ_vInitialize(&exlo
, psurfSrc
->ppal
, psurfDst
->ppal
, 0, 0, 0);
296 result
= IntEngCopyBits(&psurfDst
->SurfObj
,
305 EXLATEOBJ_vCleanup(&exlo
);
310 SURFACE_UnlockSurface(psurfSrc
);
314 SURFACE_UnlockSurface(psurfDst
);
316 GreDeleteObject(SourceBitmap
);
321 // FIXME by Removing NtGdiSetDIBits!!!
322 // This is a victim of the Win32k Initialization BUG!!!!!
323 // Converts a DIB to a device-dependent bitmap
332 CONST BITMAPINFO
*bmi
,
337 NTSTATUS Status
= STATUS_SUCCESS
;
343 ProbeForRead(&bmi
->bmiHeader
.biSize
, sizeof(DWORD
), 1);
344 ProbeForRead(bmi
, bmi
->bmiHeader
.biSize
, 1);
345 ProbeForRead(bmi
, DIB_BitmapInfoSize(bmi
, ColorUse
), 1);
347 DIB_GetDIBImageBytes(bmi
->bmiHeader
.biWidth
,
349 bmi
->bmiHeader
.biBitCount
),
352 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
354 Status
= _SEH2_GetExceptionCode();
358 if (!NT_SUCCESS(Status
))
366 EngSetLastError(ERROR_INVALID_HANDLE
);
369 if (Dc
->dctype
== DC_TYPE_INFO
)
375 Ret
= IntSetDIBits(Dc
, hBitmap
, StartScan
, ScanLines
, Bits
, bmi
, ColorUse
);
385 NtGdiSetDIBitsToDeviceInternal(
400 IN BOOL bTransformCoordinates
,
401 IN OPTIONAL HANDLE hcmXform
)
404 NTSTATUS Status
= STATUS_SUCCESS
;
406 HBITMAP hSourceBitmap
= NULL
;
407 SURFOBJ
*pDestSurf
, *pSourceSurf
= NULL
;
414 PPALETTE ppalDIB
= NULL
;
415 HPALETTE hpalDIB
= NULL
;
421 ProbeForRead(bmi
, cjMaxInfo
, 1);
422 ProbeForRead(Bits
, cjMaxBits
, 1);
424 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
426 Status
= _SEH2_GetExceptionCode();
430 if (!NT_SUCCESS(Status
))
435 pDC
= DC_LockDc(hDC
);
438 EngSetLastError(ERROR_INVALID_HANDLE
);
441 if (pDC
->dctype
== DC_TYPE_INFO
)
447 pSurf
= pDC
->dclevel
.pSurface
;
449 pDestSurf
= pSurf
? &pSurf
->SurfObj
: NULL
;
451 ScanLines
= min(ScanLines
, abs(bmi
->bmiHeader
.biHeight
) - StartScan
);
455 if (bTransformCoordinates
)
457 CoordLPtoDP(pDC
, (LPPOINT
)&rcDest
);
459 rcDest
.left
+= pDC
->ptlDCOrig
.x
;
460 rcDest
.top
+= pDC
->ptlDCOrig
.y
;
461 rcDest
.right
= rcDest
.left
+ Width
;
462 rcDest
.bottom
= rcDest
.top
+ Height
;
463 rcDest
.top
+= StartScan
;
468 SourceSize
.cx
= bmi
->bmiHeader
.biWidth
;
469 SourceSize
.cy
= ScanLines
;
471 DIBWidth
= WIDTH_BYTES_ALIGN32(SourceSize
.cx
, bmi
->bmiHeader
.biBitCount
);
473 hSourceBitmap
= EngCreateBitmap(SourceSize
,
475 BitmapFormat(bmi
->bmiHeader
.biBitCount
,
476 bmi
->bmiHeader
.biCompression
),
477 bmi
->bmiHeader
.biHeight
< 0 ? BMF_TOPDOWN
: 0,
481 EngSetLastError(ERROR_NO_SYSTEM_RESOURCES
);
482 Status
= STATUS_NO_MEMORY
;
486 pSourceSurf
= EngLockSurface((HSURF
)hSourceBitmap
);
489 Status
= STATUS_UNSUCCESSFUL
;
495 /* Create a palette for the DIB */
496 hpalDIB
= BuildDIBPalette(bmi
);
499 EngSetLastError(ERROR_NO_SYSTEM_RESOURCES
);
500 Status
= STATUS_NO_MEMORY
;
504 /* Lock the DIB palette */
505 ppalDIB
= PALETTE_LockPalette(hpalDIB
);
508 EngSetLastError(ERROR_INVALID_HANDLE
);
509 Status
= STATUS_UNSUCCESSFUL
;
513 /* Initialize EXLATEOBJ */
514 EXLATEOBJ_vInitialize(&exlo
, ppalDIB
, pSurf
->ppal
, 0, 0, 0);
517 DPRINT("BitsToDev with dstsurf=(%d|%d) (%d|%d), src=(%d|%d) w=%d h=%d\n",
518 rcDest
.left
, rcDest
.top
, rcDest
.right
, rcDest
.bottom
,
519 ptSource
.x
, ptSource
.y
, SourceSize
.cx
, SourceSize
.cy
);
520 Status
= IntEngBitBlt(pDestSurf
,
523 pDC
->rosdc
.CombinedClip
,
530 ROP3_TO_ROP4(SRCCOPY
));
532 /* Cleanup EXLATEOBJ */
533 EXLATEOBJ_vCleanup(&exlo
);
536 if (NT_SUCCESS(Status
))
541 if (ppalDIB
) PALETTE_UnlockPalette(ppalDIB
);
543 if (pSourceSurf
) EngUnlockSurface(pSourceSurf
);
544 if (hSourceBitmap
) EngDeleteSurface((HSURF
)hSourceBitmap
);
545 if (hpalDIB
) PALETTE_FreePaletteByHandle(hpalDIB
);
552 /* Converts a device-dependent bitmap to a DIB */
555 NtGdiGetDIBitsInternal(
566 BITMAPCOREINFO
* pbmci
= NULL
;
567 PSURFACE psurf
= NULL
;
573 RGBTRIPLE
* rgbTriples
;
576 NTSTATUS Status
= STATUS_SUCCESS
;
578 DPRINT("Entered NtGdiGetDIBitsInternal()\n");
580 if ((Usage
&& Usage
!= DIB_PAL_COLORS
) || !Info
|| !hBitmap
)
585 /* Probe for read and write */
586 ProbeForRead(Info
, MaxInfo
, 1);
587 ProbeForWrite(Info
, MaxInfo
, 1);
588 if (Bits
) ProbeForWrite(Bits
, MaxBits
, 1);
590 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
592 Status
= _SEH2_GetExceptionCode();
596 if (!NT_SUCCESS(Status
))
601 colorPtr
= (LPBYTE
)Info
+ Info
->bmiHeader
.biSize
;
602 rgbTriples
= colorPtr
;
605 bitmap_type
= DIB_GetBitmapInfo(&Info
->bmiHeader
,
612 if(bitmap_type
== -1)
614 DPRINT("Wrong bitmap format\n");
615 EngSetLastError(ERROR_INVALID_PARAMETER
);
618 else if(bitmap_type
== 0)
620 /* We need a BITMAPINFO to create a DIB, but we have to fill
621 * the BITMAPCOREINFO we're provided */
622 pbmci
= (BITMAPCOREINFO
*)Info
;
623 Info
= DIB_ConvertBitmapInfo((BITMAPINFO
*)pbmci
, Usage
);
626 DPRINT1("Error, could not convert the BITMAPCOREINFO!\n");
629 rgbQuads
= Info
->bmiColors
;
632 pDC
= DC_LockDc(hDC
);
633 if (pDC
== NULL
|| pDC
->dctype
== DC_TYPE_INFO
)
639 /* Get a pointer to the source bitmap object */
640 psurf
= SURFACE_ShareLockSurface(hBitmap
);
647 /* Fill in the structure */
650 case 0: /* Only info */
653 pbmci
->bmciHeader
.bcWidth
= psurf
->SurfObj
.sizlBitmap
.cx
;
654 pbmci
->bmciHeader
.bcHeight
= (psurf
->SurfObj
.fjBitmap
& BMF_TOPDOWN
) ?
655 -psurf
->SurfObj
.sizlBitmap
.cy
:
656 psurf
->SurfObj
.sizlBitmap
.cy
;
657 pbmci
->bmciHeader
.bcPlanes
= 1;
658 pbmci
->bmciHeader
.bcBitCount
= BitsPerFormat(psurf
->SurfObj
.iBitmapFormat
);
660 Info
->bmiHeader
.biWidth
= psurf
->SurfObj
.sizlBitmap
.cx
;
661 Info
->bmiHeader
.biHeight
= (psurf
->SurfObj
.fjBitmap
& BMF_TOPDOWN
) ?
662 -psurf
->SurfObj
.sizlBitmap
.cy
:
663 psurf
->SurfObj
.sizlBitmap
.cy
;;
664 Info
->bmiHeader
.biPlanes
= 1;
665 Info
->bmiHeader
.biBitCount
= BitsPerFormat(psurf
->SurfObj
.iBitmapFormat
);
666 Info
->bmiHeader
.biSizeImage
= DIB_GetDIBImageBytes( Info
->bmiHeader
.biWidth
,
667 Info
->bmiHeader
.biHeight
,
668 Info
->bmiHeader
.biBitCount
);
671 switch(Info
->bmiHeader
.biBitCount
)
675 Info
->bmiHeader
.biCompression
= BI_BITFIELDS
;
678 Info
->bmiHeader
.biCompression
= BI_RGB
;
682 else if(Info
->bmiHeader
.biBitCount
> 8)
684 Info
->bmiHeader
.biCompression
= BI_BITFIELDS
;
688 Info
->bmiHeader
.biCompression
= BI_RGB
;
690 Info
->bmiHeader
.biXPelsPerMeter
= 0;
691 Info
->bmiHeader
.biYPelsPerMeter
= 0;
692 Info
->bmiHeader
.biClrUsed
= 0;
693 Info
->bmiHeader
.biClrImportant
= 0;
694 ScanLines
= abs(Info
->bmiHeader
.biHeight
);
700 Info
->bmiHeader
.biClrUsed
= 0;
702 /* If the bitmap if a DIB section and has the same format than what
703 * we're asked, go ahead! */
704 if((psurf
->hSecure
) &&
705 (BitsPerFormat(psurf
->SurfObj
.iBitmapFormat
) == bpp
))
707 if(Usage
== DIB_RGB_COLORS
)
709 unsigned int colors
= min(psurf
->ppal
->NumColors
, 1 << bpp
);
713 for(i
=0; i
< colors
; i
++)
715 rgbTriples
[i
].rgbtRed
= psurf
->ppal
->IndexedColors
[i
].peRed
;
716 rgbTriples
[i
].rgbtGreen
= psurf
->ppal
->IndexedColors
[i
].peGreen
;
717 rgbTriples
[i
].rgbtBlue
= psurf
->ppal
->IndexedColors
[i
].peBlue
;
720 if(colors
!= 1 << bpp
) Info
->bmiHeader
.biClrUsed
= colors
;
721 for(i
=0; i
< colors
; i
++)
723 rgbQuads
[i
].rgbRed
= psurf
->ppal
->IndexedColors
[i
].peRed
;
724 rgbQuads
[i
].rgbGreen
= psurf
->ppal
->IndexedColors
[i
].peGreen
;
725 rgbQuads
[i
].rgbBlue
= psurf
->ppal
->IndexedColors
[i
].peBlue
;
730 for(i
=0; i
< 1 << bpp
; i
++)
732 if(pbmci
) ((WORD
*)rgbTriples
)[i
] = i
;
733 ((WORD
*)rgbQuads
)[i
] = i
;
739 if(Usage
== DIB_PAL_COLORS
)
741 for(i
=0; i
< 1 << bpp
; i
++)
743 if(pbmci
) ((WORD
*)rgbTriples
)[i
] = i
;
744 ((WORD
*)rgbQuads
)[i
] = i
;
747 else if(bpp
> 1 && bpp
== BitsPerFormat(psurf
->SurfObj
.iBitmapFormat
)) {
748 /* For color DDBs in native depth (mono DDBs always have
749 a black/white palette):
750 Generate the color map from the selected palette */
751 PPALETTE pDcPal
= PALETTE_LockPalette(pDC
->dclevel
.hpal
);
757 for (i
= 0; i
< pDcPal
->NumColors
; i
++) {
760 rgbTriples
[i
].rgbtRed
= pDcPal
->IndexedColors
[i
].peRed
;
761 rgbTriples
[i
].rgbtGreen
= pDcPal
->IndexedColors
[i
].peGreen
;
762 rgbTriples
[i
].rgbtBlue
= pDcPal
->IndexedColors
[i
].peBlue
;
765 rgbQuads
[i
].rgbRed
= pDcPal
->IndexedColors
[i
].peRed
;
766 rgbQuads
[i
].rgbGreen
= pDcPal
->IndexedColors
[i
].peGreen
;
767 rgbQuads
[i
].rgbBlue
= pDcPal
->IndexedColors
[i
].peBlue
;
768 rgbQuads
[i
].rgbReserved
= 0;
770 PALETTE_UnlockPalette(pDcPal
);
776 rgbTriples
[0].rgbtRed
= rgbTriples
[0].rgbtGreen
=
777 rgbTriples
[0].rgbtBlue
= 0;
778 rgbTriples
[1].rgbtRed
= rgbTriples
[1].rgbtGreen
=
779 rgbTriples
[1].rgbtBlue
= 0xff;
781 rgbQuads
[0].rgbRed
= rgbQuads
[0].rgbGreen
=
782 rgbQuads
[0].rgbBlue
= 0;
783 rgbQuads
[0].rgbReserved
= 0;
784 rgbQuads
[1].rgbRed
= rgbQuads
[1].rgbGreen
=
785 rgbQuads
[1].rgbBlue
= 0xff;
786 rgbQuads
[1].rgbReserved
= 0;
791 RtlCopyMemory(rgbTriples
, EGAColorsTriples
, sizeof(EGAColorsTriples
));
792 RtlCopyMemory(rgbQuads
, EGAColorsQuads
, sizeof(EGAColorsQuads
));
802 RGBTRIPLE
*colorTriple
;
804 RtlCopyMemory(rgbTriples
, DefLogPaletteTriples
,
805 10 * sizeof(RGBTRIPLE
));
806 RtlCopyMemory(rgbTriples
+ 246, DefLogPaletteTriples
+ 10,
807 10 * sizeof(RGBTRIPLE
));
808 colorTriple
= rgbTriples
+ 10;
809 for(r
= 0; r
<= 5; r
++) /* FIXME */
811 for(g
= 0; g
<= 5; g
++)
813 for(b
= 0; b
<= 5; b
++)
815 colorTriple
->rgbtRed
= (r
* 0xff) / 5;
816 colorTriple
->rgbtGreen
= (g
* 0xff) / 5;
817 colorTriple
->rgbtBlue
= (b
* 0xff) / 5;
823 memcpy(rgbQuads
, DefLogPaletteQuads
,
824 10 * sizeof(RGBQUAD
));
825 memcpy(rgbQuads
+ 246, DefLogPaletteQuads
+ 10,
826 10 * sizeof(RGBQUAD
));
827 color
= rgbQuads
+ 10;
828 for(r
= 0; r
<= 5; r
++) /* FIXME */
830 for(g
= 0; g
<= 5; g
++)
832 for(b
= 0; b
<= 5; b
++)
834 color
->rgbRed
= (r
* 0xff) / 5;
835 color
->rgbGreen
= (g
* 0xff) / 5;
836 color
->rgbBlue
= (b
* 0xff) / 5;
837 color
->rgbReserved
= 0;
849 if (Info
->bmiHeader
.biCompression
== BI_BITFIELDS
)
851 ((PDWORD
)Info
->bmiColors
)[0] = 0x7c00;
852 ((PDWORD
)Info
->bmiColors
)[1] = 0x03e0;
853 ((PDWORD
)Info
->bmiColors
)[2] = 0x001f;
858 if (Info
->bmiHeader
.biCompression
== BI_BITFIELDS
)
862 ((PDWORD
)Info
->bmiColors
)[0] = psurf
->ppal
->RedMask
;
863 ((PDWORD
)Info
->bmiColors
)[1] = psurf
->ppal
->GreenMask
;
864 ((PDWORD
)Info
->bmiColors
)[2] = psurf
->ppal
->BlueMask
;
868 ((PDWORD
)Info
->bmiColors
)[0] = 0xf800;
869 ((PDWORD
)Info
->bmiColors
)[1] = 0x07e0;
870 ((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] = 0xff0000;
888 ((PDWORD
)Info
->bmiColors
)[1] = 0x00ff00;
889 ((PDWORD
)Info
->bmiColors
)[2] = 0x0000ff;
894 Info
->bmiHeader
.biSizeImage
= DIB_GetDIBImageBytes(width
, height
, bpp
);
896 if(Bits
&& ScanLines
)
898 /* Create a DIBSECTION, blt it, profit */
907 if (StartScan
> psurf
->SurfObj
.sizlBitmap
.cy
)
914 ScanLines
= min(ScanLines
, psurf
->SurfObj
.sizlBitmap
.cy
- StartScan
);
918 Info
->bmiHeader
.biWidth
= psurf
->SurfObj
.sizlBitmap
.cx
;
919 Info
->bmiHeader
.biHeight
= height
< 0 ?
920 -ScanLines
: ScanLines
;
922 hBmpDest
= DIB_CreateDIBSection(pDC
, Info
, Usage
, &pDIBits
, NULL
, 0, 0);
924 Info
->bmiHeader
.biWidth
= width
;
925 Info
->bmiHeader
.biHeight
= height
;
929 DPRINT1("Unable to create a DIB Section!\n");
930 EngSetLastError(ERROR_INVALID_PARAMETER
);
935 psurfDest
= SURFACE_ShareLockSurface(hBmpDest
);
939 rcDest
.bottom
= ScanLines
;
940 rcDest
.right
= psurf
->SurfObj
.sizlBitmap
.cx
;
948 if(ScanLines
<= StartScan
)
951 SURFACE_ShareUnlockSurface(psurfDest
);
952 GreDeleteObject(hBmpDest
);
956 ScanLines
-= StartScan
;
960 srcPoint
.y
= StartScan
;
963 EXLATEOBJ_vInitialize(&exlo
, psurf
->ppal
, psurfDest
->ppal
, 0xffffff, 0xffffff, 0);
965 ret
= IntEngCopyBits(&psurfDest
->SurfObj
,
972 SURFACE_ShareUnlockSurface(psurfDest
);
978 Status
= STATUS_SUCCESS
;
981 RtlCopyMemory(Bits
, pDIBits
, DIB_GetDIBImageBytes (width
, ScanLines
, bpp
));
983 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
985 Status
= _SEH2_GetExceptionCode();
989 if(!NT_SUCCESS(Status
))
991 DPRINT1("Unable to copy bits to the user provided pointer\n");
996 GreDeleteObject(hBmpDest
);
997 EXLATEOBJ_vCleanup(&exlo
);
999 else ScanLines
= abs(height
);
1003 if(pDC
) DC_UnlockDc(pDC
);
1004 if(psurf
) SURFACE_ShareUnlockSurface(psurf
);
1005 if(pbmci
) DIB_FreeConvertedBitmapInfo(Info
, (BITMAPINFO
*)pbmci
);
1013 NtGdiStretchDIBitsInternal(
1024 LPBITMAPINFO BitsInfo
,
1043 if (!Bits
|| !BitsInfo
)
1046 safeBits
= ExAllocatePoolWithTag(PagedPool
, cjMaxBits
, TAG_DIB
);
1049 EngSetLastError(ERROR_NOT_ENOUGH_MEMORY
);
1055 ProbeForRead(BitsInfo
, cjMaxInfo
, 1);
1056 ProbeForRead(Bits
, cjMaxBits
, 1);
1057 if (DIB_GetBitmapInfo(&BitsInfo
->bmiHeader
, &width
, &height
, &planes
, &bpp
, &compr
, &size
) == -1)
1059 DPRINT1("Invalid bitmap\n");
1060 _SEH2_YIELD(goto cleanup
;)
1062 RtlCopyMemory(safeBits
, Bits
, cjMaxBits
);
1064 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
1066 DPRINT1("Error, failed to read the DIB bits\n");
1067 _SEH2_YIELD(goto cleanup
;)
1073 DPRINT1("Bitmap has a negative width\n");
1077 hBitmap
= NtGdiGetDCObject(hDC
, OBJ_BITMAP
);
1079 if (!(pdc
= DC_LockDc(hDC
)))
1081 ExFreePoolWithTag(safeBits
, TAG_DIB
);
1082 EngSetLastError(ERROR_INVALID_HANDLE
);
1086 if (XDest
== 0 && YDest
== 0 && XSrc
== 0 && XSrc
== 0 &&
1087 DestWidth
== SrcWidth
&& DestHeight
== SrcHeight
&&
1092 ret
= IntGdiGetObject(hBitmap
, sizeof(bmp
), &bmp
) == sizeof(bmp
);
1094 bmp
.bmBitsPixel
== bpp
&&
1095 bmp
.bmWidth
== SrcWidth
&&
1096 bmp
.bmHeight
== SrcHeight
&&
1097 bmp
.bmPlanes
== planes
)
1100 ret
= IntSetDIBits(pdc
, hBitmap
, 0, height
, safeBits
, BitsInfo
, Usage
);
1106 /* slow path - need to use StretchBlt */
1108 hBitmap
= DIB_CreateDIBSection(pdc
, BitsInfo
, Usage
, &pvBits
, NULL
, 0, 0);
1113 DPRINT1("Error, failed to create a DIB section\n");
1117 hdcMem
= NtGdiCreateCompatibleDC(hDC
);
1119 RtlCopyMemory(pvBits
, safeBits
, cjMaxBits
);
1120 hOldBitmap
= NtGdiSelectBitmap(hdcMem
, hBitmap
);
1122 /* Origin for DIBitmap may be bottom left (positive biHeight) or top
1123 left (negative biHeight) */
1124 ret
= NtGdiStretchBlt(hDC
, XDest
, YDest
, DestWidth
, DestHeight
,
1125 hdcMem
, XSrc
, abs(height
) - SrcHeight
- YSrc
,
1126 SrcWidth
, SrcHeight
, ROP
, 0);
1130 NtGdiSelectBitmap(hdcMem
, hOldBitmap
);
1131 NtGdiDeleteObjectApp(hdcMem
);
1132 GreDeleteObject(hBitmap
);
1135 ExFreePoolWithTag(safeBits
, TAG_DIB
);
1155 // Check if we should create a monochrome or color bitmap. We create a monochrome bitmap only if it has exactly 2
1156 // colors, which are black followed by white, nothing else. In all other cases, we create a color bitmap.
1158 if (bpp
!= 1) fColor
= TRUE
;
1159 else if ((coloruse
!= DIB_RGB_COLORS
) || (init
!= CBM_INIT
) || !data
) fColor
= FALSE
;
1162 const RGBQUAD
*rgb
= (RGBQUAD
*)((PBYTE
)data
+ data
->bmiHeader
.biSize
);
1163 DWORD col
= RGB(rgb
->rgbRed
, rgb
->rgbGreen
, rgb
->rgbBlue
);
1165 // Check if the first color of the colormap is black
1166 if ((col
== RGB(0, 0, 0)))
1169 col
= RGB(rgb
->rgbRed
, rgb
->rgbGreen
, rgb
->rgbBlue
);
1171 // If the second color is white, create a monochrome bitmap
1172 fColor
= (col
!= RGB(0xff,0xff,0xff));
1177 // Now create the bitmap
1180 handle
= IntCreateCompatibleBitmap(Dc
, width
, height
);
1184 handle
= GreCreateBitmap(width
,
1194 if (NULL
!= handle
&& CBM_INIT
== init
)
1196 IntSetDIBits(Dc
, handle
, 0, height
, bits
, data
, coloruse
);
1202 // The CreateDIBitmap function creates a device-dependent bitmap (DDB) from a DIB and, optionally, sets the bitmap bits
1203 // The DDB that is created will be whatever bit depth your reference DC is
1206 NtGdiCreateDIBitmapInternal(
1211 IN OPTIONAL LPBYTE pjInit
,
1212 IN OPTIONAL LPBITMAPINFO pbmi
,
1214 IN UINT cjMaxInitInfo
,
1219 NTSTATUS Status
= STATUS_SUCCESS
;
1220 PBYTE safeBits
= NULL
;
1221 HBITMAP hbmResult
= NULL
;
1223 if(pjInit
&& (fInit
== CBM_INIT
))
1225 safeBits
= ExAllocatePoolWithTag(PagedPool
, cjMaxBits
, TAG_DIB
);
1228 EngSetLastError(ERROR_NOT_ENOUGH_MEMORY
);
1235 if(pbmi
) ProbeForRead(pbmi
, cjMaxInitInfo
, 1);
1236 if(pjInit
&& (fInit
== CBM_INIT
))
1238 ProbeForRead(pjInit
, cjMaxBits
, 1);
1239 RtlCopyMemory(safeBits
, pjInit
, cjMaxBits
);
1242 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
1244 Status
= _SEH2_GetExceptionCode();
1248 if(!NT_SUCCESS(Status
))
1250 SetLastNtError(Status
);
1254 hbmResult
= GreCreateDIBitmapInternal(hDc
,
1265 if (safeBits
) ExFreePoolWithTag(safeBits
, TAG_DIB
);
1271 GreCreateDIBitmapInternal(
1276 IN OPTIONAL LPBYTE pjInit
,
1277 IN OPTIONAL PBITMAPINFO pbmi
,
1287 if (!hDc
) /* 1bpp monochrome bitmap */
1288 { // Should use System Bitmap DC hSystemBM, with CreateCompatibleDC for this.
1289 hdcDest
= NtGdiCreateCompatibleDC(0);
1300 Dc
= DC_LockDc(hdcDest
);
1303 EngSetLastError(ERROR_INVALID_HANDLE
);
1306 /* It's OK to set bpp=0 here, as IntCreateDIBitmap will create a compatible Bitmap
1307 * if bpp != 1 and ignore the real value that was passed */
1309 bpp
= pbmi
->bmiHeader
.biBitCount
;
1312 Bmp
= IntCreateDIBitmap(Dc
, cx
, cy
, bpp
, fInit
, pjInit
, pbmi
, iUsage
);
1317 NtGdiDeleteObjectApp(hdcDest
);
1325 NtGdiCreateDIBSection(
1327 IN OPTIONAL HANDLE hSection
,
1333 IN ULONG_PTR dwColorSpace
,
1336 HBITMAP hbitmap
= 0;
1338 BOOL bDesktopDC
= FALSE
;
1339 NTSTATUS Status
= STATUS_SUCCESS
;
1341 if (!bmi
) return hbitmap
; // Make sure.
1345 ProbeForRead(&bmi
->bmiHeader
.biSize
, sizeof(DWORD
), 1);
1346 ProbeForRead(bmi
, bmi
->bmiHeader
.biSize
, 1);
1347 ProbeForRead(bmi
, DIB_BitmapInfoSize(bmi
, Usage
), 1);
1349 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
1351 Status
= _SEH2_GetExceptionCode();
1355 if(!NT_SUCCESS(Status
))
1357 SetLastNtError(Status
);
1361 // If the reference hdc is null, take the desktop dc
1364 hDC
= NtGdiCreateCompatibleDC(0);
1368 if ((dc
= DC_LockDc(hDC
)))
1370 hbitmap
= DIB_CreateDIBSection(dc
,
1381 EngSetLastError(ERROR_INVALID_HANDLE
);
1385 NtGdiDeleteObjectApp(hDC
);
1392 DIB_CreateDIBSection(
1394 CONST BITMAPINFO
*bmi
,
1402 SURFACE
*bmp
= NULL
;
1403 void *mapBits
= NULL
;
1406 // Fill BITMAP32 structure with DIB data
1407 CONST BITMAPINFOHEADER
*bi
= &bmi
->bmiHeader
;
1414 DPRINT("format (%ld,%ld), planes %d, bpp %d, size %ld, colors %ld (%s)\n",
1415 bi
->biWidth
, bi
->biHeight
, bi
->biPlanes
, bi
->biBitCount
,
1416 bi
->biSizeImage
, bi
->biClrUsed
, usage
== DIB_PAL_COLORS
? "PAL" : "RGB");
1418 /* CreateDIBSection should fail for compressed formats */
1419 if (bi
->biCompression
== BI_RLE4
|| bi
->biCompression
== BI_RLE8
)
1421 return (HBITMAP
)NULL
;
1424 effHeight
= bi
->biHeight
>= 0 ? bi
->biHeight
: -bi
->biHeight
;
1426 bm
.bmWidth
= bi
->biWidth
;
1427 bm
.bmHeight
= effHeight
;
1428 bm
.bmWidthBytes
= ovr_pitch
? ovr_pitch
: WIDTH_BYTES_ALIGN32(bm
.bmWidth
, bi
->biBitCount
);
1430 bm
.bmPlanes
= bi
->biPlanes
;
1431 bm
.bmBitsPixel
= bi
->biBitCount
;
1434 // Get storage location for DIB bits. Only use biSizeImage if it's valid and
1435 // we're dealing with a compressed bitmap. Otherwise, use width * height.
1436 totalSize
= bi
->biSizeImage
&& bi
->biCompression
!= BI_RGB
&& bi
->biCompression
!= BI_BITFIELDS
1437 ? bi
->biSizeImage
: (ULONG
)(bm
.bmWidthBytes
* effHeight
);
1441 SYSTEM_BASIC_INFORMATION Sbi
;
1444 LARGE_INTEGER SectionOffset
;
1447 Status
= ZwQuerySystemInformation(SystemBasicInformation
,
1451 if (!NT_SUCCESS(Status
))
1456 mapOffset
= offset
- (offset
% Sbi
.AllocationGranularity
);
1457 mapSize
= bi
->biSizeImage
+ (offset
- mapOffset
);
1459 SectionOffset
.LowPart
= mapOffset
;
1460 SectionOffset
.HighPart
= 0;
1462 Status
= ZwMapViewOfSection(section
,
1472 if (!NT_SUCCESS(Status
))
1474 EngSetLastError(ERROR_INVALID_PARAMETER
);
1478 if (mapBits
) bm
.bmBits
= (char *)mapBits
+ (offset
- mapOffset
);
1480 else if (ovr_pitch
&& offset
)
1481 bm
.bmBits
= (LPVOID
) offset
;
1485 bm
.bmBits
= EngAllocUserMem(totalSize
, 0);
1486 if(!bm
.bmBits
) goto cleanup
;
1489 // hSecure = MmSecureVirtualMemory(bm.bmBits, totalSize, PAGE_READWRITE);
1490 hSecure
= (HANDLE
)0x1; // HACK OF UNIMPLEMENTED KERNEL STUFF !!!!
1492 if (usage
== DIB_PAL_COLORS
)
1497 pdcPal
= PALETTE_LockPalette(dc
->dclevel
.hpal
);
1498 hpal
= DIB_MapPaletteColors(pdcPal
, bmi
);
1499 PALETTE_UnlockPalette(pdcPal
);
1503 /* For DIB Brushes */
1504 DPRINT1("FIXME : Unsupported DIB_PAL_COLORS without a DC to map colors.\n");
1506 hpal
= (HPALETTE
) 0xFFFFFFFF;
1511 hpal
= BuildDIBPalette(bmi
);
1516 DPRINT1("Error : Could not create a palette for the DIB.\n");
1520 // Create Device Dependent Bitmap and add DIB pointer
1521 Size
.cx
= bm
.bmWidth
;
1522 Size
.cy
= abs(bm
.bmHeight
);
1523 res
= GreCreateBitmapEx(bm
.bmWidth
,
1526 BitmapFormat(bi
->biBitCount
* bi
->biPlanes
, bi
->biCompression
),
1527 BMF_DONTCACHE
| BMF_USERMEM
| BMF_NOZEROINIT
|
1528 (bi
->biHeight
< 0 ? BMF_TOPDOWN
: 0),
1534 EngSetLastError(ERROR_NO_SYSTEM_RESOURCES
);
1537 bmp
= SURFACE_LockSurface(res
);
1540 EngSetLastError(ERROR_INVALID_HANDLE
);
1544 /* WINE NOTE: WINE makes use of a colormap, which is a color translation
1545 table between the DIB and the X physical device. Obviously,
1546 this is left out of the ReactOS implementation. Instead,
1547 we call NtGdiSetDIBColorTable. */
1548 bmp
->hDIBSection
= section
;
1549 bmp
->hSecure
= hSecure
;
1550 bmp
->dwOffset
= offset
;
1551 bmp
->flags
= API_BITMAP
;
1552 bmp
->biClrImportant
= bi
->biClrImportant
;
1553 bmp
->SurfObj
.fjBitmap
&= ~BMF_DONT_FREE
;
1556 if(hpal
!= (HPALETTE
)0xFFFFFFFF)
1558 bmp
->ppal
= PALETTE_ShareLockPalette(hpal
);
1559 /* Lazy delete hpal, it will be freed at surface release */
1560 GreDeleteObject(hpal
);
1563 // Clean up in case of errors
1565 if (!res
|| !bmp
|| !bm
.bmBits
)
1567 DPRINT("got an error res=%08x, bmp=%p, bm.bmBits=%p\n", res
, bmp
, bm
.bmBits
);
1570 // MmUnsecureVirtualMemory(hSecure); // FIXME: Implement this!
1573 ZwUnmapViewOfSection(NtCurrentProcess(), mapBits
);
1578 EngFreeUserMem(bm
.bmBits
), bm
.bmBits
= NULL
;
1586 SURFACE_FreeSurfaceByHandle(res
);
1593 SURFACE_UnlockSurface(bmp
);
1596 // Return BITMAP handle and storage location
1597 if (NULL
!= bm
.bmBits
&& NULL
!= bits
)
1605 /***********************************************************************
1608 * Get the info from a bitmap header.
1609 * Return 0 for COREHEADER, 1 for INFOHEADER, -1 for error.
1613 DIB_GetBitmapInfo( const BITMAPINFOHEADER
*header
, LONG
*width
,
1614 LONG
*height
, WORD
*planes
, WORD
*bpp
, DWORD
*compr
, DWORD
*size
)
1616 if (header
->biSize
== sizeof(BITMAPCOREHEADER
))
1618 const BITMAPCOREHEADER
*core
= (const BITMAPCOREHEADER
*)header
;
1619 *width
= core
->bcWidth
;
1620 *height
= core
->bcHeight
;
1621 *planes
= core
->bcPlanes
;
1622 *bpp
= core
->bcBitCount
;
1627 if (header
->biSize
>= sizeof(BITMAPINFOHEADER
)) /* assume BITMAPINFOHEADER */
1629 *width
= header
->biWidth
;
1630 *height
= header
->biHeight
;
1631 *planes
= header
->biPlanes
;
1632 *bpp
= header
->biBitCount
;
1633 *compr
= header
->biCompression
;
1634 *size
= header
->biSizeImage
;
1637 DPRINT1("(%d): unknown/wrong size for header\n", header
->biSize
);
1641 /***********************************************************************
1642 * DIB_GetDIBImageBytes
1644 * Return the number of bytes used to hold the image in a DIB bitmap.
1645 * 11/16/1999 (RJJ) lifted from wine
1648 INT APIENTRY
DIB_GetDIBImageBytes(INT width
, INT height
, INT depth
)
1650 return WIDTH_BYTES_ALIGN32(width
, depth
) * (height
< 0 ? -height
: height
);
1653 /***********************************************************************
1654 * DIB_BitmapInfoSize
1656 * Return the size of the bitmap info structure including color table.
1657 * 11/16/1999 (RJJ) lifted from wine
1660 INT FASTCALL
DIB_BitmapInfoSize(const BITMAPINFO
* info
, WORD coloruse
)
1662 unsigned int colors
, size
, masks
= 0;
1664 if (info
->bmiHeader
.biSize
== sizeof(BITMAPCOREHEADER
))
1666 const BITMAPCOREHEADER
*core
= (const BITMAPCOREHEADER
*)info
;
1667 colors
= (core
->bcBitCount
<= 8) ? 1 << core
->bcBitCount
: 0;
1668 return sizeof(BITMAPCOREHEADER
) + colors
*
1669 ((coloruse
== DIB_RGB_COLORS
) ? sizeof(RGBTRIPLE
) : sizeof(WORD
));
1671 else /* assume BITMAPINFOHEADER */
1673 colors
= info
->bmiHeader
.biClrUsed
;
1674 if (colors
> 256) colors
= 256;
1675 if (!colors
&& (info
->bmiHeader
.biBitCount
<= 8))
1676 colors
= 1 << info
->bmiHeader
.biBitCount
;
1677 if (info
->bmiHeader
.biCompression
== BI_BITFIELDS
) masks
= 3;
1678 size
= max( info
->bmiHeader
.biSize
, sizeof(BITMAPINFOHEADER
) + masks
* sizeof(DWORD
) );
1679 return size
+ colors
* ((coloruse
== DIB_RGB_COLORS
) ? sizeof(RGBQUAD
) : sizeof(WORD
));
1685 DIB_MapPaletteColors(PPALETTE ppal
, CONST BITMAPINFO
* lpbmi
)
1687 PALETTEENTRY
* ppalEntries
;
1692 if (!(ppal
->flFlags
& PAL_INDEXED
))
1697 nNumColors
= 1 << lpbmi
->bmiHeader
.biBitCount
;
1698 if (lpbmi
->bmiHeader
.biClrUsed
)
1700 nNumColors
= min(nNumColors
, lpbmi
->bmiHeader
.biClrUsed
);
1703 /* Don't have more colors than we need */
1704 nNumColors
= min(ppal
->NumColors
, nNumColors
);
1706 ppalEntries
= ExAllocatePoolWithTag(PagedPool
, sizeof(PALETTEENTRY
) * nNumColors
, TAG_COLORMAP
);
1707 if (ppalEntries
== NULL
)
1709 DPRINT1("Could not allocate palette entries\n");
1713 lpIndex
= (USHORT
*)((PBYTE
)lpbmi
+ lpbmi
->bmiHeader
.biSize
);
1715 for (i
= 0; i
< nNumColors
; i
++)
1717 if (*lpIndex
< ppal
->NumColors
)
1719 ppalEntries
[i
] = ppal
->IndexedColors
[*lpIndex
];
1723 ppalEntries
[i
].peRed
= 0;
1724 ppalEntries
[i
].peGreen
= 0;
1725 ppalEntries
[i
].peBlue
= 0;
1726 ppalEntries
[i
].peFlags
= 0;
1732 hpal
= PALETTE_AllocPalette(PAL_INDEXED
, nNumColors
, (ULONG
*)ppalEntries
, 0, 0, 0);
1734 ExFreePoolWithTag(ppalEntries
, TAG_COLORMAP
);
1741 BuildDIBPalette(CONST BITMAPINFO
*bmi
)
1746 ULONG RedMask
= 0, GreenMask
= 0, BlueMask
= 0;
1747 PDWORD pdwColors
= (PDWORD
)((PBYTE
)bmi
+ bmi
->bmiHeader
.biSize
);
1750 // Determine Bits Per Pixel
1751 bits
= bmi
->bmiHeader
.biBitCount
;
1753 // Determine paletteType from Bits Per Pixel
1756 paletteType
= PAL_INDEXED
;
1757 RedMask
= GreenMask
= BlueMask
= 0;
1759 else if (bmi
->bmiHeader
.biCompression
== BI_BITFIELDS
)
1761 paletteType
= PAL_BITFIELDS
;
1762 if (bmi
->bmiHeader
.biSize
>= sizeof(BITMAPV4HEADER
))
1764 PBITMAPV4HEADER pV4Header
= (PBITMAPV4HEADER
)&bmi
->bmiHeader
;
1765 RedMask
= pV4Header
->bV4RedMask
;
1766 GreenMask
= pV4Header
->bV4GreenMask
;
1767 BlueMask
= pV4Header
->bV4BlueMask
;
1771 RedMask
= pdwColors
[0];
1772 GreenMask
= pdwColors
[1];
1773 BlueMask
= pdwColors
[2];
1778 paletteType
= PAL_BITFIELDS
;
1782 paletteType
|= PAL_RGB16_555
;
1790 paletteType
|= PAL_BGR
;
1792 GreenMask
= 0x00FF00;
1793 BlueMask
= 0x0000FF;
1798 if (bmi
->bmiHeader
.biClrUsed
== 0)
1800 ColorCount
= 1 << bmi
->bmiHeader
.biBitCount
;
1804 ColorCount
= bmi
->bmiHeader
.biClrUsed
;
1807 if (PAL_INDEXED
== paletteType
)
1809 hPal
= PALETTE_AllocPaletteIndexedRGB(ColorCount
, (RGBQUAD
*)pdwColors
);
1813 hPal
= PALETTE_AllocPalette(paletteType
, 0,
1815 RedMask
, GreenMask
, BlueMask
);
1821 /* Converts a BITMAPCOREINFO to a BITMAPINFO structure,
1822 * or does nothing if it's already a BITMAPINFO (or V4 or V5) */
1825 DIB_ConvertBitmapInfo (CONST BITMAPINFO
* pbmi
, DWORD Usage
)
1827 CONST BITMAPCOREINFO
* pbmci
= (BITMAPCOREINFO
*)pbmi
;
1828 BITMAPINFO
* pNewBmi
;
1829 UINT numColors
= 0, ColorsSize
= 0;
1831 if(pbmi
->bmiHeader
.biSize
>= sizeof(BITMAPINFOHEADER
)) return (BITMAPINFO
*)pbmi
;
1832 if(pbmi
->bmiHeader
.biSize
!= sizeof(BITMAPCOREHEADER
)) return NULL
;
1834 if(pbmci
->bmciHeader
.bcBitCount
<= 8)
1836 numColors
= 1 << pbmci
->bmciHeader
.bcBitCount
;
1837 if(Usage
== DIB_PAL_COLORS
)
1839 ColorsSize
= numColors
* sizeof(WORD
);
1843 ColorsSize
= numColors
* sizeof(RGBQUAD
);
1846 else if (Usage
== DIB_PAL_COLORS
)
1848 /* Invalid at high Res */
1852 pNewBmi
= ExAllocatePoolWithTag(PagedPool
, sizeof(BITMAPINFOHEADER
) + ColorsSize
, TAG_DIB
);
1853 if(!pNewBmi
) return NULL
;
1855 RtlZeroMemory(pNewBmi
, sizeof(BITMAPINFOHEADER
) + ColorsSize
);
1857 pNewBmi
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
1858 pNewBmi
->bmiHeader
.biBitCount
= pbmci
->bmciHeader
.bcBitCount
;
1859 pNewBmi
->bmiHeader
.biWidth
= pbmci
->bmciHeader
.bcWidth
;
1860 pNewBmi
->bmiHeader
.biHeight
= pbmci
->bmciHeader
.bcHeight
;
1861 pNewBmi
->bmiHeader
.biPlanes
= pbmci
->bmciHeader
.bcPlanes
;
1862 pNewBmi
->bmiHeader
.biCompression
= BI_RGB
;
1863 pNewBmi
->bmiHeader
.biSizeImage
= DIB_GetDIBImageBytes(pNewBmi
->bmiHeader
.biWidth
,
1864 pNewBmi
->bmiHeader
.biHeight
,
1865 pNewBmi
->bmiHeader
.biBitCount
);
1867 if(Usage
== DIB_PAL_COLORS
)
1869 RtlCopyMemory(pNewBmi
->bmiColors
, pbmci
->bmciColors
, ColorsSize
);
1874 for(i
=0; i
<numColors
; i
++)
1876 pNewBmi
->bmiColors
[i
].rgbRed
= pbmci
->bmciColors
[i
].rgbtRed
;
1877 pNewBmi
->bmiColors
[i
].rgbGreen
= pbmci
->bmciColors
[i
].rgbtGreen
;
1878 pNewBmi
->bmiColors
[i
].rgbBlue
= pbmci
->bmciColors
[i
].rgbtBlue
;
1885 /* Frees a BITMAPINFO created with DIB_ConvertBitmapInfo */
1888 DIB_FreeConvertedBitmapInfo(BITMAPINFO
* converted
, BITMAPINFO
* orig
)
1890 if(converted
!= orig
)
1891 ExFreePoolWithTag(converted
, TAG_DIB
);