[]
Saves the image into a stream in PNG format.
public void SaveAsPng(Stream stream, PngOptions options = null)
Public Sub SaveAsPng(stream As Stream, Optional options As PngOptions = Nothing)
Type | Name | Description |
---|---|---|
Stream | stream | The output stream. |
PngOptions | options | The options for the PNG image encoder. |
Saves the image into a file in PNG format.
public void SaveAsPng(string filePath, PngOptions options = null)
Public Sub SaveAsPng(filePath As String, Optional options As PngOptions = Nothing)
Type | Name | Description |
---|---|---|
string | filePath | The output file path. |
PngOptions | options | The options for the PNG image encoder. |