ColorChannelFlag | serializable |
System.Drawing.Imaging (system.drawing.dll) | enum |
This enumeration is used by the
ImageAttributes.SetOutputChannel() to determine
which of the CMYK channels should be output when the image is drawn.
This can be used for color-space conversion.
public enum ColorChannelFlag {
ColorChannelC = 0,
ColorChannelM = 1,
ColorChannelY = 2,
ColorChannelK = 3,
ColorChannelLast = 4
}
Hierarchy
System.Object System.ValueType
System.Enum(System.IComparabl,
System.Formattable,
System.IConvertible)
ColorChannelFlag
Passed To
ImageAttributes.SetOutputChannel()
|