Inquires the current image inversion mode setting.
Declaration:
|
Copy Code |
AT_ERRCOUNT ACCUAPI IG_REC_inversion_mode_get(
enumIGRecImgInvert* lpMode
);
|
Arguments:
Name |
Type |
Description |
lpMode |
enumIGRecImgInvert* |
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;
enumIGRecImgInvert eMode = IG_REC_IMG_INVERT_AUTO;
ErrCount += IG_REC_inversion_mode_get(&eMode);
|