Enum ColorChannelFlag
Enum ColorChannelFlag
Namespace: Aspose.Imaging
Assembly: Aspose.Imaging.dll (25.7.0)
Specifies individual channels in the CMYK (cyan, magenta, yellow, black) color space. This enumeration is used by the SetOutputChannel methods.
public enum ColorChannelFlag
{
Red = 1 << 0,
Green = 1 << 1,
Blue = 1 << 2,
Alpha = 1 << 3,
Cyan = Red | Green,
Magenta = Red | Blue,
Yellow = Green | Red,
Black = ~(Red | Green | Blue)
}
Fields
ColorChannelC = 0
The cyan color channel.
ColorChannelK = 3
The black color channel.
ColorChannelLast = 4
The last selected channel should be used.
ColorChannelM = 1
The magenta color channel.
ColorChannelY = 2
The yellow color channel.