IG_util_colorspace_color_count_get
This function returns the number of color channels in the specified color space.
Declaration:
|
Copy Code
|
AT_UINT ACCUAPI IG_util_colorspace_color_count_get(
enumIGColorSpaceIDs colorSpace
);
|
Arguments:
Return Value:
The number of color channels.
Supported Raster Image Formats:
This function does not process image pixels.
Sample:
None
Example:
|
Copy Code
|
enumIGColorSpaceIDs colorSpace = IG_COLOR_SPACE_ID_RGBA;
AT_UINT nColor; /* Number of color channels */
nColor = IG_util_colorspace_color_count_get(colorSpace);
/* nColor is 3 */
|
Remarks:
Color channels are all image channels except alpha and extra channels.