This property sets whether or not an image saved in TIFF format is appended to an existing multi-page TIFF image or saved as a separate image.
[Visual Basic] Public Property TiffAppend As
Boolean
[C#] public bool TiffAppend {get; set;}
Property Value
Value | Explanation |
---|---|
True | Multi-page TIFF image (The image will be appended to the end of an existing TIFF image) |
False | Single TIFF image (Each image file contains only one image) |
Explanation
The TiffAppend property sets whether or not an image saved in TIFF format is appended to an existing multi-page TIFF image or saved as a separate image.
This property can be set when saving an image in TIFF format. When this property is set to True and the SaveImageToFile method is executed, you must then execute the CloseMultiTiff method.