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

Jpeg2kFrame Constructor (Int32, Int32, Jpeg2kProgressionOrder)

Creates and initializes new Jpeg2kFrame class instance.

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

Syntax

Visual Basic
Public Sub New ( _
	tileWidth As Integer, _
	tileHeight As Integer, _
	progressionOrder As Jpeg2kProgressionOrder _
)
C#
public Jpeg2kFrame(
	int tileWidth,
	int tileHeight,
	Jpeg2kProgressionOrder progressionOrder
)

Parameters

tileWidth

Type: System.Int32

A non-negative value that specifies a JPEG2000 tile width. If it equals to 0, the tile height is taken the same as a bitmap height. You can change this value later using the TileWidth property.
tileHeight

Type: System.Int32

A non-negative value that specifies a JPEG2000 tile height. If it equals to 0, the tile height is taken the same as a bitmap height. You can change this value later using the TileHeight property.
progressionOrder

Type: Aurigma.GraphicsMill.Codecs.Jpeg2kProgressionOrder

A member of the Jpeg2kProgressionOrder enumeration which specifies a progression order of the JPEG2000 compression. You can change this value later using the ProgressionOrder property.

See Also

Reference