Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
CodecsJpeg2000ProgressionsOrder Enumeration
See Also  
Leadtools.Codecs Namespace : CodecsJpeg2000ProgressionsOrder Enumeration



Indicates the order of progression.

Syntax

Visual Basic (Declaration) 
Public Enum CodecsJpeg2000ProgressionsOrder 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As CodecsJpeg2000ProgressionsOrder
C# 
public enum CodecsJpeg2000ProgressionsOrder : Enum 
C++/CLI 
public enum class CodecsJpeg2000ProgressionsOrder : public Enum 

Members

MemberDescription
LayerResolutionComponentPosition Quality–axis order. Image starts out blurry and becomes clearer and more detailed as additional data is decoded.
ResolutionLayerComponentPosition Resolution-axis order. Image starts out small and becomes larger as additional data is decoded. Higher compression ratios achieved by leaving lower resolutions in the file.
ResolutionPositionComponentLayer Resolution-axis order. Image starts out small and becomves larger as additional data is decoded. Higher compression ratios achieved by leaving lower resolutions in the file.
PositionComponentResolutionLayer Position–axis order. Image starts out as a series of blocks starting from the top left corner. Additional portions of the image become visible as more data is decoded. Image data stored by spatial location.
ComponentPositionResolutionLayer Color-axis order. Image starts out gray. Color is added as more data is decoded. Image data stored by color channel, starting with channely Y, then U, then V. If the transform to YUV option is used, the lowest decompressed image level for RGB is grayscale. Otherwise, the output is only the red channel.

Example

For an example, refer to CodecsJpeg2000Options.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.Codecs.CodecsJpeg2000ProgressionsOrder

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also