GetDIBColorTable (Compact 2013)
3/28/2014
This function retrieves red, green, and blue color values from a range of entries in the color table of the device-independent bitmap (DIB) that is selected into a specified device context.
Syntax
WINGDIAPI UINT WINAPI GetDIBColorTable(
HDC hdc,
UINT uStartIndex,
UINT cEntries,
RGBQUAD* pColors
);
Parameters
hdc
[in] Handle to a device context.A DIB must be selected into this device context.
- uStartIndex
[in] Unsigned integer that that specifies a zero-based index of the first color table entry that you want to retrieve.
- cEntries
[in] Unsigned integer that specifies the number of color table entries that you want to retrieve.
pColors
[out] Pointer to a buffer that receives an array of RGBQUAD structures that contain color information from the DIB color table.You must specify a buffer that is large enough to contain as many RGBQUAD structures as the value of cEntries.
Return Value
The number of color table entries that the function retrieved indicates success.
Zero indicates failure.
To get extended error information, call GetLastError.
Remarks
You should call the GetDIBColorTable function to retrieve the color table for DIB section bitmaps that use 1, 4, or 8 bits per pixel (bpp).
The biBitCount member of a bitmap-associated BITMAPINFOHEADER structure specifies the number of bpp.
DIB section bitmaps that have a biBitCount value greater than eight do not have a color table, but these bitmaps do have associated color masks. Call the GetObject function to retrieve those color masks.
Requirements
Header |
windows.h |
Library |
coredll.lib |
See Also
Reference
GDI Functions
CreateDIBSection
GetObject
SetDIBColorTable
BITMAPINFOHEADER
DIBSECTION
RGBQUAD