GetDIBits function gdi32
int
GetDIBits(
- int hdc,
- int hbm,
- int start,
- int cLines,
- Pointer<
NativeType> lpvBits, - Pointer<
BITMAPINFO> lpbmi, - int usage,
The GetDIBits function retrieves the bits of the specified compatible bitmap and copies them into a buffer as a DIB using the specified format.
int GetDIBits(
HDC hdc,
HBITMAP hbm,
UINT start,
UINT cLines,
LPVOID lpvBits,
LPBITMAPINFO lpbmi,
UINT usage
);
Implementation
int GetDIBits(int hdc, int hbm, int start, int cLines, Pointer lpvBits,
Pointer<BITMAPINFO> lpbmi, int usage) =>
_GetDIBits(hdc, hbm, start, cLines, lpvBits, lpbmi, usage);