Inquires the current Image resolution enhancement mode setting.
Declaration:
|
Copy Code |
AT_ERRCOUNT ACCUAPI IG_REC_res_enhancement_mode_get(
enumIGRecImgResEnhancement * res
);
|
Arguments:
res |
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);
|