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.
Namespace: KGySoft.DrawingAssembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 8.1.0
public static void SaveAsMultipageTiff(
this IEnumerable<Image> images,
string fileName
)
<ExtensionAttribute>
Public Shared Sub SaveAsMultipageTiff (
images As IEnumerable(Of Image),
fileName As String
)
public:
[ExtensionAttribute]
static void SaveAsMultipageTiff(
IEnumerable<Image^>^ images,
String^ fileName
)
[<ExtensionAttribute>]
static member SaveAsMultipageTiff :
images : IEnumerable<Image> *
fileName : string -> unit
- 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.
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).