ImageGear for C and C++ on Windows v19.9 - Updated
IG_REC_MOR_is_faxed_get
API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Recognition Settings Functions > IG_REC_MOR_is_faxed_get

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);