The GetDIBits function retrieves the bits of the specified bitmap and copies them into a buffer using the specified format.
int GetDIBits(
HDC hdc, |
// handle of device context |
HBITMAP hbmp, |
// handle of bitmap |
UINT uStartScan, |
// first scan line to set in destination bitmap |
UINT cScanLines, |
// number of scan lines to copy |
LPVOID lpvBits, |
// address of array for bitmap bits |
LPBITMAPINFO lpbi, |
// address of structure with bitmap data |
UINT uUsage |
// RGB or palette index |
); |
Value |
Meaning |
DIB_PAL_COLORS |
The color table should consist of an array of 16-bit indices into the current logical palette. |
DIB_RGB_COLORS |
The color table should consist of literal red, green, blue (RGB) values. |
If the lpvBits parameter is non-NULL and the function succeeds, the return value is the number of scan lines copied from the bitmap.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
If the requested format for the DIB matches its internal format, the RGB values for the bitmap are copied. If the requested format doesn’t match the internal format, a color table is synthesized. The following table describes the color table synthesized for each format.
Value |
Meaning |
1_BPP |
The color table consists of a black and a white entry. |
4_BPP |
The color table consists of a mix of colors identical to the standard VGA palette. |
8_BPP |
The color table consists of a general mix of 256 colors defined by GDI. (Included in these 256 colors are the 20 colors found in the default logical palette.) |
24_BPP |
No color table is returned. |
If the lpvBits parameter is a valid pointer, the first six members of the BITMAPINFOHEADER structure must be initialized to specify the size and format of the DIB. Note that a bottom-up DIB is specified by setting the height to a positive number, while a top-down DIB is specified by setting the height to a negative number. The bitmap’s color table will be appended to the BITMAPINFO structure.
If lpvBits is NULL, GetDIBits examines the first member of the first structure pointed to by lpbi. This member must specify the size, in bytes, of a BITMAPCOREHEADER or a BITMAPINFOHEADER structure. The function uses the specified size to determine how the remaining members should be initialized.
If lpvBits is NULL and the bit count member of BITMAPINFO is initialized to zero, GetDIBits fills in BITMAPINFOHEADER or BITMAPCOREHEADER without the color table. This technique can be used to query bitmap attributes.
The bitmap identified by the hbmp parameter must not be selected into a device context when the application calls this function.
The origin for a bottom-up DIB is the lower-left corner of the bitmap; the origin for a top-down DIB is the upper-left corner.
BITMAPCOREHEADER, BITMAPINFO, BITMAPINFOHEADER, SetDIBits
See:
file: /Techref/os/win/api/win32/func/src/f30_14.htm, 8KB, , updated: 2001/6/26 10:21, local time: 2024/11/5 02:26,
3.135.212.183:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://ecomorder.com/techref/os/win/api/win32/func/src/f30_14.htm"> GetDIBits</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to ecomorder.com! |
.