[]
Saves the current page as a PNG image file.
public void SaveAsPng(string outputFilePath, PngOptions options = null)
Public Sub SaveAsPng(outputFilePath As String, Optional options As PngOptions = Nothing)
Type | Name | Description |
---|---|---|
string | outputFilePath | The destination file path. |
PngOptions | options | The set of parameters for the output PNG image. |
Saves the current page to a stream in PNG format.
public void SaveAsPng(Stream outputStream, PngOptions options = null)
Public Sub SaveAsPng(outputStream As Stream, Optional options As PngOptions = Nothing)
Type | Name | Description |
---|---|---|
Stream | outputStream | The destination stream. |
PngOptions | options | The set of parameters for the output PNG image. |