TiffEncoderSave Method (Stream, ImageCollection, ProgressEventHandler) |
Saves a collection of images to a multi-page TIFF.
Namespace:
Atalasoft.Imaging.Codec
Assembly:
Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public override long Save(
Stream stream,
ImageCollection images,
ProgressEventHandler progress
)
Public Overrides Function Save (
stream As Stream,
images As ImageCollection,
progress As ProgressEventHandler
) As Long
Parameters
- stream
- Type: System.IOStream
A stream that the encoded image data will be saved to. This stream must have
FileAccess.ReadWrite set or else only the first image will be saved. - images
- Type: Atalasoft.ImagingImageCollection
The ImageCollection containing the images to save. - progress
- Type: Atalasoft.ImagingProgressEventHandler
The progress delegate. Can be set to null (Nothing in
Visual Basic).
Return Value
Type:
Int64The total number of bytes written to the provided stream.
See Also