SimpleOCR:SDK Functions – FreeImg
void FreeImg(IMG * img)
This function frees an existing image.
Return Value
None
Parameters
img
Pointer to an image of type IMG.
Example
The following example frees an image
IMG *img;
// Create and use an IMG
...
// Free it
FreeImg(img);