[]
Saves the image to a System.IO.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 to a file in PNG format.
public void SaveAsPng(string fileName, PngOptions options = null)
Public Sub SaveAsPng(fileName As String, Optional options As PngOptions = Nothing)
Type | Name | Description |
---|---|---|
string | fileName | The output file name. |
PngOptions | options | The options for the PNG image encoder. |