BitmapEncoder::Save Method (Stream^)
.NET Framework (current version)
Encodes a bitmap image to a specified Stream.
Assembly: PresentationCore (in PresentationCore.dll)
public: [SecurityCriticalAttribute] [SecurityPermissionAttribute(SecurityAction::LinkDemand, Flags = SecurityPermissionFlag::UnmanagedCode)] [SecurityPermissionAttribute(SecurityAction::InheritanceDemand, Flags = SecurityPermissionFlag::UnmanagedCode)] virtual void Save( Stream^ stream )
Parameters
- stream
-
Type:
System.IO::Stream^
Identifies the file stream that this bitmap is encoded to.
| Exception | Condition |
|---|---|
| InvalidOperationException | The bitmap has already been encoded. |
| NotSupportedException | The Frames value that is passed to the encoder is null. |
| NotSupportedException | The Frames count is less than or equal to zero. |
In the context of this API, "save" and "encode" are synonymous.
The following example demonstrates how to save a bitmap image to a file stream by using the derived TiffBitmapEncoder class.
.NET Framework
Available since 3.0
Available since 3.0
Show: