ImageGear Professional DLL v18.1 for Windows
IG_util_colorspace_color_count_get
Send Feedback
ImageGear Professional v18.1 > API Reference Guide > Core Component API Reference > Core Component Functions Reference > Utility Functions > IG_util_colorspace_color_count_get

Glossary Item Box

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:

Name Type Description
colorSpace enumIGColorSpaceIDs Color space ID.

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.

©2014. Accusoft Corporation. All Rights Reserved.