Click or drag to resize

Jp2EncoderOptions Class

This class specifies encoder options that can be applied to the entire image, a specific tile, or a specific component.
Inheritance Hierarchy
SystemObject
  Atalasoft.Imaging.Codec.Jpeg2000Jp2EncoderOptions

Namespace:  Atalasoft.Imaging.Codec.Jpeg2000
Assembly:  Atalasoft.dotImage.Jpeg2000 (in Atalasoft.dotImage.Jpeg2000.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public class Jp2EncoderOptions

The Jp2EncoderOptions type exposes the following members.

Constructors
  NameDescription
Public methodJp2EncoderOptions
Creates a new instance of Jp2EncoderOptions.
Top
Properties
  NameDescription
Public propertyCodeBlockSize
Gets or sets the size of the blocks of coded data.
Public propertyCoderOptions
Gets or sets the coder options for faster compression / decompression.
Protected propertyGuardBits
Public propertyPacketMarkers
Gets or sets a value that creates special markers at the beginning and/or at the end of each block of a coded area.
Public propertyProgressionOrder
Gets or sets the organization of the coded data.
Public propertyQualityLayers
Gets or sets the number of quality layers in the code stream for use with progressive decoding.
Public propertyQuantizationStyle
Gets or sets the quantization steps.
Public propertyWaveletFilterMethod
Gets or sets a value selecting reversible (WaveletFiveThree) or irreversible (WaveletNineSeven) wavelet filters.
Public propertyWaveletLevels
Gets or sets the number of wavelet transformation levels.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
Remarks

See the [!:Jp2Encoder.EncoderOptions] property in the [!:Jp2Encoder] to set these options for the entire encoded image. To specify different options for different tiles or components, override the [!:Jp2Encoder.GetEncoderOptions] method in the Jp2Encoder class.

QualityLayer, ProgressionOrder, and PacketMarkers are the options which can be set for each tile. WaveletFilterMethod, WaveletLevels, QuantizationStyle, codeBlockSize, and coderOptions are the options which can be set for each component in a given tile.

See Also