[]
Saves the image into a Stream in PNG format.
public void SaveAsPng(Stream stream, Rectangle? clipRect = null)
Public Sub SaveAsPng(stream As Stream, Optional clipRect As Rectangle? = Nothing)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The output stream. |
| Rectangle? | clipRect | Clipping rectangle of the image to be saved. |
Saves the image into a file in PNG format.
public void SaveAsPng(string path, Rectangle? clipRect = null)
Public Sub SaveAsPng(path As String, Optional clipRect As Rectangle? = Nothing)
| Type | Name | Description |
|---|---|---|
| string | path | The output file path. |
| Rectangle? | clipRect | Clipping rectangle of the image to be saved. |