Image.Save Method (Stream, ImageCodecInfo, EncoderParameters)
.NET Framework (current version)
Saves this image to the specified stream, with the specified encoder and image encoder parameters.
Assembly: System.Drawing (in System.Drawing.dll)
Public Sub Save ( stream As Stream, encoder As ImageCodecInfo, encoderParams As EncoderParameters )
Parameters
- stream
-
Type:
System.IO.Stream
The Stream where the image will be saved.
- encoder
-
Type:
System.Drawing.Imaging.ImageCodecInfo
The ImageCodecInfo for this Image.
- encoderParams
-
Type:
System.Drawing.Imaging.EncoderParameters
An EncoderParameters that specifies parameters used by the image encoder.
| Exception | Condition |
|---|---|
| ArgumentNullException | stream is null. |
| ExternalException | The image was saved with the wrong image format. |
Do not save an image to the same stream that was used to construct the image. Doing so might damage the stream.
The image must be saved to the stream at an offset of zero. If any additional data has been written to the stream before saving the image, the image data in the stream will be corrupted.
.NET Framework
Available since 1.1
Available since 1.1
Show: