This topic has not yet been rated - Rate this topic

BitmapEncoder Class

Encodes a collection of BitmapFrame objects to an image stream.

Namespace:  System.Windows.Media.Imaging
Assembly:  PresentationCore (in PresentationCore.dll)
public abstract class BitmapEncoder : DispatcherObject

The BitmapEncoder type exposes the following members.

  Name Description
Protected method BitmapEncoder Initializes a new instance of the BitmapEncoder class.
Top
  Name Description
Public property CodecInfo Gets information that describes this codec.
Public property ColorContexts Gets or sets a value that represents the color profile that is associated with this encoder.
Public property Dispatcher Gets the Dispatcher this DispatcherObject is associated with. (Inherited from DispatcherObject.)
Public property Frames Gets or sets the individual frames within an image.
Public property Metadata Gets or sets the metadata that will be associated with this bitmap during encoding.
Public property Palette Gets or sets a value that represents the BitmapPalette of an encoded bitmap.
Public property Preview Gets or sets a BitmapSource that represents the global preview of a bitmap, if there is one.
Public property Thumbnail Gets or sets a BitmapSource that represents the global embedded thumbnail.
Top
  Name Description
Public method CheckAccess Determines whether the calling thread has access to this DispatcherObject. (Inherited from DispatcherObject.)
Public method Static member Create Creates a BitmapEncoder from a Guid that identifies the desired bitmap format.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Save Encodes a bitmap image to a specified Stream.
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Public method VerifyAccess Enforces that the calling thread has access to this DispatcherObject. (Inherited from DispatcherObject.)
Top

A derived codec may also provide support for specialized encoding properties, which are used to determine how a bitmap is encoded. For example, a codec may support specialized compression routines or interlacing of an encoded image.

You can specify multiple frames for any derived encoder, even if the bitmap format only supports one frame. In this case, only the first frame is saved.

The collection of frames can be encoded one at a time to any number of file streams.

Encoding does not work in partial trust. See WPF Partial Trust Security for information on partial trust.

The following example demonstrates how to use the derived TiffBitmapEncoder class to encode an image.


FileStream stream = new FileStream("empty.tif", FileMode.Create);
TiffBitmapEncoder encoder = new TiffBitmapEncoder();
TextBlock myTextBlock = new TextBlock();
myTextBlock.Text = "Codec Author is: " + encoder.CodecInfo.Author.ToString();
encoder.Frames.Add(BitmapFrame.Create(image));
MessageBox.Show(myPalette.Colors.Count.ToString());
encoder.Save(stream);


.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ