This documentation is for the old version. Go to the latest Graphics Mill docs

TiffExtraChannel Constructor (Bitmap, TiffChannelType)

Creates and initializes new TiffExtraChannel class instance. You can associate a bitmap with this extra channel as well as set its type here.

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

Syntax

Visual Basic
Public Sub New ( _
	bitmap As Bitmap, _
	channelType As TiffChannelType _
)
C#
public TiffExtraChannel(
	Bitmap bitmap,
	TiffChannelType channelType
)

Parameters

bitmap

Type: Aurigma.GraphicsMill.Bitmap

Bitmap class instance which should be associated with this extra channel. To put another bitmap into channel, you should use SetBitmap(Bitmap) method.
channelType

Type: Aurigma.GraphicsMill.Codecs.TiffChannelType

Value that specifies necessary TIFF extra channel type. You can change it later using ChannelType property.

See Also

Reference