TiffWriter.ExtraChannels Property

Gets or sets a collection of extra channels to embed into the image.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public TiffExtraChannelCollection ExtraChannels { get; set; }

Property Value

A TiffExtraChannelCollection to embed into the image.

Examples

The following code reads a TIFF image, extracts an extra channel from it, and saves the channel's bitmap as a JPEG image.

C#
using (var reader = new TiffReader(@"Images\result.tif"))
{
    reader.Frames[0].ExtraChannels[1].GetBitmap().Save(@"Images\Output\extra.jpg");
}

See Also

Reference