This function returns the number of extra channels in the specified color space.
|
Copy Code
|
|
|---|---|
AT_UINT ACCUAPI IG_util_colorspace_extra_count_get(
enumIGColorSpaceIDs colorSpace,
AT_UINT totalChannelCount
);
|
|
| Name | Type | Description |
|---|---|---|
| colorSpace | enumIGColorSpaceIDs | Color space ID. |
| totalChannelCount | AT_UINT | Total number of channels in the color space. |
Returns the number of extra channels.
This function does not process image pixels.
None
|
Copy Code
|
|
|---|---|
enumIGColorSpaceIDs colorSpace = IG_COLOR_SPACE_ID_RGBAEx; AT_UINT nExtra; /* Number of extra channels */ nExtra = IG_util_colorspace_extra_count_get(colorSpace); /* nExtra is 1 */ |
|
You must specify the total number of channels in the color space in order for this to be calculated.