Class BitmapEncoder
Encodes a collection of BitmapFrame objects to a stream.
Inheritance
System.Object
BitmapEncoder
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Media.Imaging
Assembly: Telerik.WinControls.RichTextEditor.dll
Syntax
public abstract class BitmapEncoder
Constructors
BitmapEncoder()
Initializes a new instance of the BitmapEncoder class.
Declaration
protected BitmapEncoder()
Properties
CodecInfo
Gets information that describes this codec.
Declaration
public virtual BitmapCodecInfo CodecInfo { get; }
Property Value
BitmapCodecInfo
|
Frames
Gets or sets the individual frames within an image.
Declaration
public IList<WriteableBitmap> Frames { get; }
Property Value
System.Collections.Generic.IList<WriteableBitmap>
|
Methods
Dispose()
Disposes the encoder.
Declaration
public virtual void Dispose()
Save(Stream)
Encodes a bitmap image to a specified System.IO.Stream.
Declaration
public virtual void Save(Stream stream)
Parameters
System.IO.Stream
stream
Stream. |