This function checks to determine whether ICC support is currently enabled.
Declaration:
Copy Code | |
---|---|
AT_BOOL ACCUAPI IG_gui_get_enableicc(); |
Arguments:
None
Return Value:
TRUE/FALSE
Supported Raster Image Formats:
This function does not process image pixels.
Sample:
Image Processing
Example:
Copy Code | |
---|---|
AT_BOOL bICCEnabled = FALSE;
/* Check whether ICC support is enabled */
bICCEnabled = IG_gui_get_enableicc();
...
|