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

TiffFrame Constructor (Bitmap, CompressionType)

Creates and initializes new TiffFrame class instance. You can associate a bitmap with this frame as well as set compression type here.

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

Syntax

Visual Basic
Public Sub New ( _
	bitmap As Bitmap, _
	compression As CompressionType _
)
C#
public TiffFrame(
	Bitmap bitmap,
	CompressionType compression
)

Parameters

bitmap

Type: Aurigma.GraphicsMill.Bitmap

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

Type: Aurigma.GraphicsMill.Codecs.CompressionType

Value that specifies necessary TIFF compression type. You can change it later using Compression property.

See Also

Reference