VintaSoft Imaging .NET SDK 14.1: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles.Psd Namespace / PsdPage Class / GetInterlacedImage(Int32,DecodingSettings,EventHandler<ProgressEventArgs>,EventHandler<IntermediateImageRequestEventArgs>) Method
Syntax Requirements SeeAlso
In This Topic
    GetInterlacedImage(Int32,DecodingSettings,EventHandler<ProgressEventArgs>,EventHandler<IntermediateImageRequestEventArgs>) Method (PsdPage)
    In This Topic
    Returns the interlaced image of this PSD page.
    Syntax
    'Declaration
    
    Public Function GetInterlacedImage( _
    ByVal decodingSettings
    The decoding settings that should be used for decoding of page image.
    As System.Int32, _
    ByVal progressDelegate
    Progress delegate. Can be set to null (Nothing in Visual Basic).
    As Vintasoft.Imaging.Codecs.Decoders.DecodingSettings, _
    ByVal lineStep
    Interlace step. Possible values: 1 - each line of image will be decoded; 2 - each second line of image will be decoded; etc.
    As System.EventHandler(Of ProgressEventArgs), _
    ByVal intermediateImageRequest
    Delegate for requesting intermediate image. Can be set to null (Nothing in Visual Basic)
    As System.EventHandler(Of IntermediateImageRequestEventArgs) _
    ) As Vintasoft.Imaging.VintasoftImage

    Parameters

    decodingSettings
    The decoding settings that should be used for decoding of page image.
    progressDelegate
    Progress delegate. Can be set to null (Nothing in Visual Basic).
    lineStep
    Interlace step. Possible values: 1 - each line of image will be decoded; 2 - each second line of image will be decoded; etc.
    intermediateImageRequest
    Delegate for requesting intermediate image. Can be set to null (Nothing in Visual Basic)

    Return Value

    The image associated with this PSD page if image was loaded successfully; null if image loading was canceled.
    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