VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Decoders Namespace / JpegDecodingSettings Class / UseSystemDecoder Property
Syntax Exceptions Requirements SeeAlso
In This Topic
    UseSystemDecoder Property (JpegDecodingSettings)
    In This Topic
    Gets or sets a value indicating whether JPEG image must be decoded using method that is provided by default drawing factory ("system" decoder).
    Syntax
    'Declaration
    
    <BrowsableAttribute(False)>
    Public Property UseSystemDecoder As Boolean
    
    
    [Browsable(False)]
    public bool UseSystemDecoder { get; set; }
    
    
    [Browsable(False)]
    public: __property bool get_UseSystemDecoder();
    public: __property void set_UseSystemDecoder(
    bool value
    );
    [Browsable(False)]
    public:
    property bool UseSystemDecoder { bool get(); void set(bool value); }

    Property Value

    True - JPEG image must be decoded using system JPEG decoder; false - JPEG image must be decoded using JPEG decoder from VintaSoft Imaging .NET SDK.
    Default value is true.
    Exceptions
    ExceptionDescription
    Thrown if JPEG decoder from .NET platform can not be used with current settings.
    Requirements

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

    See Also