ImageGear for C and C++ on Windows v21.0 - Updated
API Reference Guide / GUI Component API Reference / GUI Component Functions Reference / ICC Functions / IG_gui_get_enableicc
In This Topic
    IG_gui_get_enableicc
    In This Topic

    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();
    ...