Jp2Decoder Class |
Namespace: Atalasoft.Imaging.Codec.Jpeg2000
The Jp2Decoder type exposes the following members.
Name | Description | |
---|---|---|
Jp2Decoder | Creates a new instance of a Jp2Decoder. |
Name | Description | |
---|---|---|
ByteOrder | Gets or sets the byte order of the decoded data from one of little endian, big endian, or machine
automatic. | |
CacheOption | Gets or sets a value specifying whether the compress data should be stored in an internal cache.
| |
EnableProgressiveDecompression | Gets or sets a value enabling the ability to progressively decode the image. | |
Precision | Gets or sets a value indicating the precision of the wavelet coefficients. | |
ProgressiveDecodeSteps | Gets or sets the number of progressive decompression steps. | |
ScaleDown | Gets or sets a factor that is used to scale downwards the image as it's decoded. | |
SupportedImageType | Obsolete. Returns the ImageType that the implemented decoder class supports. (Inherited from ImageDecoder.) |
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetImageInfo | Returns information about a JPEG2000 image such as width, height, and bit depth. (Overrides ImageDecoderGetImageInfo(Stream).) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
IsValidFormat | Returns true if the specified Stream is a JPEG2000 image. (Overrides ImageDecoderIsValidFormat(Stream).) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
NetworkRead | ||
NormalRead | ||
ProgressiveRead | ||
Read | Decodes a JPEG2000 image from a stream and returns an AtalaImage with the decoded image
data. (Overrides ImageDecoderRead(Stream, ProgressEventHandler).) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
ProgressiveImage | Fired for each intermediate step when decoding an image progressively. |
Imports Atalasoft.Imaging.Codec.Jpeg2000 ... Dim jp2 As Jp2Decoder = New Jp2Decoder() RegisteredDecoders.Decoders.Add(jp2)
using Atalasoft.Imaging.Codec.Jpeg2000; ... Jp2Decoder jp2 = new Jp2Decoder(); RegisteredDecoders.Decoders.Add(jp2);