ImageGear .NET v25.2 - Updated
ImageGear.Formats.Jpeg2k Assembly / ImageGear.Formats.JPEG2K Namespace / ImGearJPEG2KModes Enumeration




In This Topic
    ImGearJPEG2KModes Enumeration
    In This Topic
    Specifies JPEG2K codestream error checking and recovery modes.
    Syntax
    'Declaration
     
    Public Enum ImGearJPEG2KModes 
       Inherits System.Enum
    'Usage
     
    Dim instance As ImGearJPEG2KModes
    public enum ImGearJPEG2KModes : System.Enum 
    __value public enum ImGearJPEG2KModes : public System.Enum 
    public enum class ImGearJPEG2KModes : public System.Enum 
    Members
    MemberValueDescription
    FAST0The fast mode is used by default. In this case, compliance is assumed and checking is minimized; there is no attempt to recover from any errors.
    FUSSY1In the fussy mode, the code-stream management machinery makes a serious attempt to identify compliance violations and generates an appropriate terminal error message if it finds one.
    RESILIENT2In the resilient mode, the code-stream management machinery makes a serious attempt to both detect and recover from errors in the code-stream. We attempt to guarantee that decompression will not fail, so long as the main header is uncorrupted and there is only one tile with one tile-part.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ImageGear.Formats.JPEG2K.ImGearJPEG2KModes

    See Also