[]
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)
Public Sub SaveAsTiff(stream As Stream, viewState As ViewState, Optional pageRange As OutputRange = Nothing, Optional options As SaveAsImageOptions = Nothing, Optional frameSettings As TiffFrameSettings = Nothing)
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)
Public Sub SaveAsTiff(stream As Stream, Optional pageRange As OutputRange = Nothing, Optional options As SaveAsImageOptions = Nothing, Optional frameSettings As TiffFrameSettings = Nothing)
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)
Public Sub SaveAsTiff(filePath As String, viewState As ViewState, Optional pageRange As OutputRange = Nothing, Optional options As SaveAsImageOptions = Nothing, Optional frameSettings As TiffFrameSettings = Nothing)
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)
Public Sub SaveAsTiff(filePath As String, Optional pageRange As OutputRange = Nothing, Optional options As SaveAsImageOptions = Nothing, Optional frameSettings As TiffFrameSettings = Nothing)
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. |