ImageExtensionsSaveAsMultipageTiff(IEnumerableImage, String) Method

Saves the provided images as a multi-page TIFF into the specified file. When Image instances in images already contain multiple pages, only the current page is taken.
See the Remarks section of the SaveAsMultipageTiff(IEnumerableImage, Stream) overload for details.

Definition

Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 8.1.0
C#
public static void SaveAsMultipageTiff(
	this IEnumerable<Image> images,
	string fileName
)

Parameters

images  IEnumerableImage
The images to save into the TIFF data stream.
fileName  String
The name of the file to which to save the images. The directory of the specified path is created if it does not exist.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableImage. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also