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

GifFrame Constructor (Bitmap, Int32, Int32, Boolean)

Creates and initializes new GifFrame class instance. You can associate a bitmap with it as well as set frame position and interlacing option here.

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

Syntax

Visual Basic
Public Sub New ( _
	bitmap As Bitmap, _
	left As Integer, _
	top As Integer, _
	interlaced As Boolean _
)
C#
public GifFrame(
	Bitmap bitmap,
	int left,
	int top,
	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 SetBitmap(Bitmap) method.
left

Type: System.Int32

X-coordinate of the top left corner of the frame (in pixels). You can change it later using Left property.
top

Type: System.Int32

Y-coordinate of the top left corner of the frame (in pixels). You can change it later using Left property.
interlaced

Type: System.Boolean

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

See Also

Reference