Interface IImageDecoder
Represents a decoder for converting stream to RadBitmapData.
Namespace: Telerik.Windows.Media.Imaging
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface IImageDecoder
Properties
Name
Gets the name of the decoder.
Declaration
string Name { get; }
Property Value
System.String
|
SupportedExtensions
Gets the supported extensions.
Declaration
IEnumerable<string> SupportedExtensions { get; }
Property Value
System.Collections.Generic.IEnumerable<System.String>
|
Methods
Decode(Stream)
Decodes the specified stream.
Declaration
RadBitmapData Decode(Stream stream)
Parameters
System.IO.Stream
stream
The stream. |
Returns
RadBitmapData
|