VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles.Jpeg Namespace / JpegOperationMode Enumeration
Syntax Members Hierarchy Requirements SeeAlso
In This Topic
    JpegOperationMode Enumeration
    In This Topic
    Specifies available modes of JPEG coding process.
    Syntax
    'Declaration
    
    Public Enum JpegOperationMode
       Inherits System.Enum
    
    
    public enum JpegOperationMode : System.Enum
    
    
    __value public enum JpegOperationMode : public System.Enum
    
    
    public enum class JpegOperationMode : public System.Enum
    
    
    Members
    MemberDescription
    SequentialBaselineBaseline sequential process with Huffman coding.
    SequentialExtendedExtended sequential DCT process with Huffman coding.
    ProgressiveProgressive DCT process with Huffman coding.
    LosslessLossless process with Huffman coding.
    SequentialDifferentialDifferential sequential DCT process with Huffman coding.
    ProgressiveDifferentialDifferential progressive DCT process with Huffman coding.
    LosslessDifferentialDifferential lossless process with Huffman coding.
    SequentialExtendedArithmeticExtended sequential DCT process with arithmetic coding.
    ProgressiveArithmeticProgressive DCT process with arithmetic coding.
    LosslessArithmeticLossless process with arithmetic coding.
    SequentialDifferentialArithmeticDifferential sequential DCT process with arithmetic coding.
    ProgressiveDifferentialArithmeticDifferential progressive DCT process with arithmetic coding.
    LosslessDifferentialArithmeticDifferential lossless process with arithmetic coding.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Vintasoft.Imaging.Codecs.ImageFiles.Jpeg.JpegOperationMode

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also