[]
Saves the document pages as images to a stream in TIFF format, one page per frame.
public void SaveAsTiff(string fileName, OutputRange pageRange = null, ImageOutputSettings options = null, TiffFrameSettings frameSettings = null)
Public Sub SaveAsTiff(fileName As String, Optional pageRange As OutputRange = Nothing, Optional options As ImageOutputSettings = Nothing, Optional frameSettings As TiffFrameSettings = Nothing)
| Type | Name | Description |
|---|---|---|
| string | fileName | The output file path. |
| OutputRange | pageRange | The range of pages that should be saved. |
| ImageOutputSettings | options | Options that allow customizing the output images. |
| TiffFrameSettings | frameSettings | Frame settings that are used for encoding the TIFF frames. |
Saves the document pages as images to a stream in TIFF format, one page per frame.
public void SaveAsTiff(Stream stream, OutputRange pageRange = null, ImageOutputSettings options = null, TiffFrameSettings frameSettings = null)
Public Sub SaveAsTiff(stream As Stream, Optional pageRange As OutputRange = Nothing, Optional options As ImageOutputSettings = Nothing, Optional frameSettings As TiffFrameSettings = Nothing)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The output stream. |
| OutputRange | pageRange | The range of pages that should be saved. |
| ImageOutputSettings | options | Options that allow customizing the output images. |
| TiffFrameSettings | frameSettings | Frame settings that are used for encoding the TIFF frames. |