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