ImageGear for C and C++ on Windows v19.3 - Updated
IG_gui_get_showiccwarning
API Reference Guide > GUI Component API Reference > GUI Component Functions Reference > ICC Functions > IG_gui_get_showiccwarning

This function gets the state of the registry entry that determines whether we should show the warning dialog related to embedded color profile or non-RGB color format.

Declaration:

 
Copy Code
AT_BOOL ACCUAPI IG_gui_get_showiccwarning();

Arguments:

None

Return Value:

TRUE/FALSE

Supported Raster Image Formats:

N/A

Sample:

Image Processing

Example:

 
Copy Code
AT_BOOL bShowICCWarning = FALSE;
/* Get the state of the registry entry */
bShowICCWarning = IG_gui_get_showiccwarning();
...