Click or drag to resize

TiffDocumentCombine Method (Stream, Stream)

Combines a set of TIFF Streams into a single output TIFF Stream

Namespace:  Atalasoft.Imaging.Codec.Tiff
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public static void Combine(
	Stream output,
	params Stream[] sources
)

Parameters

output
Type: System.IOStream
The output stream that will contain the combined TIFF.
sources
Type: System.IOStream
An array of input streams that will be combined into a single output.
Remarks
Each of these methods use a params array as the final argument so that they can be invoked with or without the array object (ie, Combine(outputStream, file1, file2, file2)).
See Also