SaveAsTiff(Stream,OutputRange,SaveAsImageOptions) Method
In This Topic
Saves the document pages as images to a stream in TIFF format, one page per frame.
Syntax
'Declaration
Public Overloads Sub SaveAsTiff( _
ByVal As Stream, _
Optional ByVal As GrapeCity.Documents.Common.OutputRange, _
Optional ByVal As GrapeCity.Documents.Pdf.SaveAsImageOptions _
)
'Usage
Dim instance As FlexViewer
Dim stream As Stream
Dim pageRange As GrapeCity.Documents.Common.OutputRange
Dim options As GrapeCity.Documents.Pdf.SaveAsImageOptions
instance.SaveAsTiff(stream, pageRange, options)
public void SaveAsTiff(
Stream ,
GrapeCity.Documents.Common.OutputRange ,
GrapeCity.Documents.Pdf.SaveAsImageOptions
)
Parameters
- stream
- The output stream.
- pageRange
- The GrapeCity.Documents.Common.OutputRange object that defines which pages of the document should be saved.
- options
- The GrapeCity.Documents.Pdf.SaveAsImageOptions object.
See Also