Overload | Description |
---|---|
TiffSaveAsMultiPageFile(Int32,String,TiffCompression) | Stores a specified GdPicture image, that is represented by its unique image identifier, as the first page of a new multipage TIFF image file to a given file path. You can subsequently add a new page to this image file using one of the TiffAddToMultiPageFile() methods, for example the TiffAddToMultiPageFile(Int32,Int32) method.
This sequential writing is the faster way to create multipage TIFF image files by adding individual pages based on one page files. |
TiffSaveAsMultiPageFile(Int32,Stream,TiffCompression) | Stores a specified GdPicture image, that is represented by its unique image identifier, as the first page of a new multipage TIFF image file to a given stream. You can subsequently add a new page to this image file using one of the TiffAddToMultiPageFile() methods, for example the TiffAddToMultiPageFile(Int32,Int32) method.
This sequential writing is the faster way to create multipage TIFF image files by adding individual pages based on one page files. |
TiffSaveAsMultiPageFile(Int32,Stream,TiffCompression,Int32) | Stores a specified GdPicture image, that is represented by its unique image identifier, as the first page of a new multipage TIFF image file to a given stream. You can also define a JPEG quality parameter when the JPEG compression is required using this method. You can subsequently add a new page to this image file using one of the TiffAddToMultiPageFile() methods, for example the TiffAddToMultiPageFile(Int32,Int32,TiffCompression,Int32) method.
This sequential writing is the faster way to create multipage TIFF image files by adding individual pages based on one page files. |
TiffSaveAsMultiPageFile(Int32,String,TiffCompression,Int32) | Stores a specified GdPicture image, that is represented by its unique image identifier, as the first page of a new multipage TIFF image file to a given file path. You can also define a JPEG quality parameter when the JPEG compression is required using this method. You can subsequently add a new page to this image file using one of the TiffAddToMultiPageFile() methods, for example the TiffAddToMultiPageFile(Int32,Int32,TiffCompression,Int32) method.
This sequential writing is the faster way to create multipage TIFF image files by adding individual pages based on one page files. |