VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Decoders Namespace / JpegDecoder Class / CanUseProgressiveDecoding(Int32,DecodingSettings) Method
Syntax Requirements SeeAlso
In This Topic
    CanUseProgressiveDecoding(Int32,DecodingSettings) Method (JpegDecoder)
    In This Topic
    Determines that decoder can progressively read the image.
    Syntax
    'Declaration
    
    Public Function CanUseProgressiveDecoding( _
    ByVal pageIndex
    The zero based page index. This parameter is not used and can be set to 0.
    As System.Int32, _
    ByVal decodingSettings
    The decoding settings that should be used for decoding of page image.
    As DecodingSettings _
    ) As Boolean
    public bool CanUseProgressiveDecoding(
    System.Int32 pageIndex,
    DecodingSettings decodingSettings
    )
    public: bool CanUseProgressiveDecoding(
    System.Int32 pageIndex,
    DecodingSettings* decodingSettings
    )
    public:
    bool CanUseProgressiveDecoding(
    System.Int32 pageIndex,
    DecodingSettings^ decodingSettings
    )

    Parameters

    pageIndex
    The zero based page index. This parameter is not used and can be set to 0.
    decodingSettings
    The decoding settings that should be used for decoding of page image.

    Return Value

    True if decoder can progressively read the image;
    false if decoder cannot progressively read the image.
    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