[]
Saves the image to a System.IO.Stream in BMP format.
public void SaveAsBmp(Stream stream, BmpOptions options = null)
Public Sub SaveAsBmp(stream As Stream, Optional options As BmpOptions = Nothing)
Type | Name | Description |
---|---|---|
Stream | stream | The output stream. |
BmpOptions | options | The options for the BMP image encoder. |
Saves the image to a file in BMP format.
public void SaveAsBmp(string fileName, BmpOptions options = null)
Public Sub SaveAsBmp(fileName As String, Optional options As BmpOptions = Nothing)
Type | Name | Description |
---|---|---|
string | fileName | The output file name. |
BmpOptions | options | The options for the BMP image encoder. |