SimpleOCR:SDK Functions – GetImgBitmapSize
int GetImgBitmapSize(const IMG * img)
This function returns the size in bytes of the bitmap corresponding to the image.
Return Value
Bitmap size in bytes.
Parameters
img
Pointer to an image of type IMG.
Comments
Example
IMG *img;
int bitmapSize;
// create an IMG
...
bitmapSize=GetImgBitmapSize (img);