Click or drag to resize

ChannelFlags Enumeration

Bit flags used by some methods to specify which channels to work with.
Bit flags used by some methods to specify which channels to work with.

Namespace:  Atalasoft.Imaging.ImageProcessing
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
[FlagsAttribute]
public enum ChannelFlags
Members
  Member nameDescription
Channel1 The first channel in the image. For a RGB or RGBA image this is the Blue color channel.
Channel2 The second channel in the image. For a RGB or RGBA image this is the Green color channel.
Channel3 The third channel in the image. For a RGB or RGBA image this is the Red color channel.
Channel4 The fourth channel in the image. For a RGBA image this is the Alpha channel.
AllChannels Specifies all channels in the image (Channel1 | Channel2 | Channel3 | Channel4).
See Also