Table of Contents

Method SaveAsMultipageTiff

Namespace
LMKit.Media.Image
Assembly
LM-Kit.NET.dll

SaveAsMultipageTiff(string, params ImageBuffer[])

Saves multiple images as pages in a single multipage TIFF file.

public static bool SaveAsMultipageTiff(string filePath, params ImageBuffer[] pages)

Parameters

filePath string

The output file path.

pages ImageBuffer[]

The images to include as pages, in order.

Returns

bool

true if the file was saved successfully; otherwise, false.

Exceptions

ArgumentNullException

Thrown if filePath or pages is null.

ArgumentException

Thrown if pages is empty.

Share