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

GifFrame Constructor (Bitmap, Boolean)

Creates and initializes new GifFrame class instance. You can associate a bitmap with it.

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

Syntax

Visual Basic
Public Sub New ( _
	bitmap As Bitmap, _
	interlaced As Boolean _
)
C#
public GifFrame(
	Bitmap bitmap,
	bool interlaced
)

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 the SetBitmap(Bitmap) method.
interlaced

Type: System.Boolean

Value that specifies if the frame should be interlaced. You can change it later using the Interlaced property.

See Also

Reference