[]
Saves the page as an image to a stream in JPEG format.
public void SaveAsJpeg(Stream stream, ImageOutputSettings options = null)
Public Sub SaveAsJpeg(stream As Stream, Optional options As ImageOutputSettings = Nothing)
Type | Name | Description |
---|---|---|
Stream | stream | The output stream. |
ImageOutputSettings | options | Options that allow customizing the output image. |
Saves the page as an image to a file in JPEG format.
public void SaveAsJpeg(string filePath, ImageOutputSettings options = null)
Public Sub SaveAsJpeg(filePath As String, Optional options As ImageOutputSettings = Nothing)
Type | Name | Description |
---|---|---|
string | filePath | The output file path. |
ImageOutputSettings | options | Options that allow customizing the output image. |