ImageGear for C and C++ on Windows v19.3 - Updated
IG_REC_res_enhancement_mode_get
API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Image Processing Functions > IG_REC_res_enhancement_mode_get

Inquires the current Image resolution enhancement mode setting.

Declaration:

 
Copy Code
AT_ERRCOUNT ACCUAPI IG_REC_res_enhancement_mode_get(
   enumIGRecImgResEnhancement* res
);

Arguments:

Name Type Description
res enumIGRecImgResEnhancement* Pointer to a variable to get the current 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_ERRCOUNT ErrCount = 0;
enumIGRecImgResEnhancement eImageResEnhancement = IG_REC_IMG_RE_NO;
ErrCount = IG_REC_res_enhancement_mode_get(&eImageResEnhancement);