Click or drag to resize

TiffEncoderSave Method (Stream, ImageCollection, ProgressEventHandler)

Saves a collection of images to a multi-page TIFF.
Encode an AtalaImage as a Tiff image to a stream.

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
)

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: Int64
The total number of bytes written to the provided stream.
See Also