Inquires the current setting of the Fax image mode that applies to the IG_REC_RM_OMNIFONT_MOR recognition module only.
Declaration:
|
Copy Code |
AT_ERRCOUNT ACCUAPI IG_REC_MOR_is_faxed_get(
LPAT_BOOL pbFaxed
);
|
Arguments:
Name |
Type |
Description |
pbFaxed |
LPAT_BOOL |
Address of a Boolean variable to hold the current Fax image mode setting. |
Return Value:
Returns the number of ImageGear errors that occurred during this function call.
Supported Raster Image Formats:
This function does not process image pixels.
Example:
|
Copy Code |
AT_BOOL bFaxed = FALSE;
AT_ERRCOUNT ErrCount = 0;
ErrCount += IG_REC_MOR_is_faxed_get(&bFaxed);
|