Class ImageFormatProviderBase
Inheritance
System.Object
ImageFormatProviderBase
Namespace: Telerik.Windows.Media.Imaging.FormatProviders
Assembly: Telerik.Windows.Controls.ImageEditor.dll
Syntax
public abstract class ImageFormatProviderBase : Object, IImageFormatProvider
Constructors
ImageFormatProviderBase()
Declaration
protected ImageFormatProviderBase()
Properties
CanExport
Declaration
public abstract bool CanExport { get; }
Property Value
System.Boolean
|
Implements
CanImport
Declaration
public abstract bool CanImport { get; }
Property Value
System.Boolean
|
Implements
FilesDescription
Declaration
public virtual string FilesDescription { get; }
Property Value
System.String
|
Implements
SupportedExtensions
Declaration
public abstract IEnumerable<string> SupportedExtensions { get; }
Property Value
System.Collections.Generic.IEnumerable<System.String>
|
Implements
Methods
Export(RadBitmap)
Declaration
public virtual byte[] Export(RadBitmap image)
Parameters
RadBitmap
image
|
Returns
System.Byte[]
|
Implements
Export(RadBitmap, Stream)
Declaration
public virtual void Export(RadBitmap image, Stream stream)
Parameters
RadBitmap
image
|
System.IO.Stream
stream
|
Implements
Import(Byte[])
Declaration
public virtual RadBitmap Import(byte[] bytes)
Parameters
System.Byte[]
bytes
|
Returns
RadBitmap
|
Implements
Import(Stream)
Declaration
public virtual RadBitmap Import(Stream stream)
Parameters
System.IO.Stream
stream
|
Returns
RadBitmap
|