VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Encoders Namespace / MultipageEncoderBase Class / SaveImages Methods / SaveImages(ImageCollection,Stream) Method
Syntax Exceptions Remarks Requirements SeeAlso
In This Topic
    SaveImages(ImageCollection,Stream) Method (MultipageEncoderBase)
    In This Topic
    Saves the image collection to the stream.
    Syntax
    'Declaration
    
    Public Overloads Function SaveImages( _
    ByVal images
    ImageCollection object to save.
    As Vintasoft.Imaging.ImageCollection, _
    ByVal stream
    Stream where the image from collection should be saved.
    As System.IO.Stream _
    ) As Boolean

    Parameters

    images
    ImageCollection object to save.
    stream
    Stream where the image from collection should be saved.

    Return Value

    True - image collection is successfully saved to the stream;
    false - image collection is not saved to the stream because collection is empty, saving is not necessary or canceled.
    Exceptions
    ExceptionDescription
    Thrown if images or stream are null.
    Thrown if image is locked and cannot be saved.
    Remarks

    This method must be overwritten in child classes.

    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