SimpleOCR:SDK Functions – GetImgBitmapInfo
LPBITMAPINFO GetImgBitmapInfo(const IMG * img)
This function gets a pointer to the BITMAPINFO structure corresponding to the image.
Return Value
A pointer to a BITMAPINFO structure.
Parameters
img
Pointer to an image of type IMG.
Comments
See your Windows SDK documentation for obtaining information about the BITMAPINFO structure and how to use it.
Example
IMG *img;
LPBITMAPINFO lpbi;
// Create an IMG
...
lpbi=GetImgBitmapInfo(img);