[]
Saves the document pages as images to a stream in TIFF format, one page per frame.
public void SaveAsTiff(Stream stream, ViewState viewState, OutputRange pageRange = null, SaveAsImageOptions options = null, TiffFrameSettings frameSettings = null)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The output stream. |
| ViewState | viewState | The document view state. |
| OutputRange | pageRange | The range of pages that should be saved. |
| SaveAsImageOptions | 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, SaveAsImageOptions options = null, TiffFrameSettings frameSettings = null)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The output stream. |
| OutputRange | pageRange | The range of pages that should be saved. |
| SaveAsImageOptions | 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 file in TIFF format, one page per frame.
public void SaveAsTiff(string filePath, ViewState viewState, OutputRange pageRange = null, SaveAsImageOptions options = null, TiffFrameSettings frameSettings = null)
| Type | Name | Description |
|---|---|---|
| string | filePath | The output file path. |
| ViewState | viewState | The document view state. |
| OutputRange | pageRange | The range of pages that should be saved. |
| SaveAsImageOptions | 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 file in TIFF format, one page per frame.
public void SaveAsTiff(string filePath, OutputRange pageRange = null, SaveAsImageOptions options = null, TiffFrameSettings frameSettings = null)
| Type | Name | Description |
|---|---|---|
| string | filePath | The output file path. |
| OutputRange | pageRange | The range of pages that should be saved. |
| SaveAsImageOptions | options | Options that allow customizing the output images. |
| TiffFrameSettings | frameSettings | Frame settings that are used for encoding the TIFF frames. |