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

SwfFrame Constructor (Int32, Int32, Int32)

Creates and initializes new SwfFrame class instance. You can specify frame position and JPEG compression quality here.

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

Syntax

Visual Basic
Public Sub New ( _
	left As Integer, _
	top As Integer, _
	quality As Integer _
)
C#
public SwfFrame(
	int left,
	int top,
	int quality
)

Parameters

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 Top property.
quality

Type: System.Int32

Number in range [0, 100] that specifies quality of JPEG compression. Large values means higher quality, but larger file size. You can change it later using Quality property.

Remarks

If you use this constructor, Compression property will be set to Jpeg property.

See Also

Reference