Class
ImageFormatProviderBase

Definition

Namespace:Telerik.Windows.Media.Imaging.FormatProviders

Assembly:Telerik.Windows.Controls.ImageEditor.dll

Syntax:

cs-api-definition
public abstract class ImageFormatProviderBase : IImageFormatProvider

Inheritance: objectImageFormatProviderBase

Derived Classes: BmpFormatProviderGifFormatProviderIconFormatProviderJpegFormatProviderPngFormatProviderTiffFormatProvider

Implements: IImageFormatProvider

Constructors

ImageFormatProviderBase()

Declaration

cs-api-definition
protected ImageFormatProviderBase()

Properties

CanExport

Declaration

cs-api-definition
public abstract bool CanExport { get; }

Property Value

bool

Implements IImageFormatProvider.CanExport

CanImport

Declaration

cs-api-definition
public abstract bool CanImport { get; }

Property Value

bool

Implements IImageFormatProvider.CanImport

FilesDescription

Declaration

cs-api-definition
public virtual string FilesDescription { get; }

Property Value

string

Implements IImageFormatProvider.FilesDescription

SupportedExtensions

Declaration

cs-api-definition
public abstract IEnumerable<string> SupportedExtensions { get; }

Property Value

IEnumerable<string>

Implements IImageFormatProvider.SupportedExtensions

Methods

Export(RadBitmap)

Declaration

cs-api-definition
public virtual byte[] Export(RadBitmap image)

Parameters

image

RadBitmap

Returns

byte[]

Implements IImageFormatProvider.Export(RadBitmap)

Export(RadBitmap, Stream)

Declaration

cs-api-definition
public virtual void Export(RadBitmap image, Stream stream)

Parameters

image

RadBitmap

stream

Stream

Implements IImageFormatProvider.Export(RadBitmap, Stream)

Import(Stream)

Declaration

cs-api-definition
public virtual RadBitmap Import(Stream stream)

Parameters

stream

Stream

Returns

RadBitmap

Implements IImageFormatProvider.Import(Stream)

Import(byte[])

Declaration

cs-api-definition
public virtual RadBitmap Import(byte[] bytes)

Parameters

bytes

byte[]

Returns

RadBitmap

Implements IImageFormatProvider.Import(byte[])