Gets or sets a collection of extra channels to embed into the image.
Namespace:
Aurigma.GraphicsMill.Codecs
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public TiffExtraChannelCollection ExtraChannels { get; set; }
The following code reads a TIFF image, extracts an extra channel from it, and saves the channel's bitmap as a JPEG image.
using (var reader = new TiffReader(@"Images\result.tif")) { reader.Frames[0].ExtraChannels[1].GetBitmap().Save(@"Images\Output\extra.jpg"); }