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

JpegEncoderOptions Constructor (Int32, Boolean)

Creates and initializes new JpegEncoderOptions class instance. You can set some JPEG settings here.

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

Syntax

Visual Basic
Public Sub New ( _
	quality As Integer, _
	progressive As Boolean _
)
C#
public JpegEncoderOptions(
	int quality,
	bool progressive
)

Parameters

quality

Type: System.Int32

Value in range [0, 100] specifying JPEG quality. You can change it later through Quality property.
progressive

Type: System.Boolean

Value that specifies if JPEG should be progressive. You can change it later through IsProgressive property.

See Also

Reference