SimpleOCR:SDK Functions – LoadMultipleImg
SETOFIMG * LoadMultipleImg(const char * filename)
Loads a set of images from a TIFF file.
Return Value
A pointer to the loaded set or NULL if the function fails.
Parameters
filename
TIFF file name.
Comments
When you don’t need the set anymore, you have to free it by calling the FreeMultipleImg function. If your TIFF files contain only one image, you should use LoadImg.
Example
SETOFIMG *set;
set=LoadMultipleImg("foo.tif");
if (set==NULL)
{
// error processing
}