BitmapDecoder::Create Method (Uri^, BitmapCreateOptions, BitmapCacheOption)

 

Creates a BitmapDecoder from a Uri by using the specified BitmapCreateOptions and BitmapCacheOption.

Namespace:   System.Windows.Media.Imaging
Assembly:  PresentationCore (in PresentationCore.dll)

public:
static BitmapDecoder^ Create(
	Uri^ bitmapUri,
	BitmapCreateOptions createOptions,
	BitmapCacheOption cacheOption
)

Parameters

bitmapUri
Type: System::Uri^

The Uri of the bitmap to decode.

createOptions
Type: System.Windows.Media.Imaging::BitmapCreateOptions

Identifies the BitmapCreateOptions for this decoder.

cacheOption
Type: System.Windows.Media.Imaging::BitmapCacheOption

Identifies the BitmapCacheOption for this decoder.

Exception Condition
ArgumentNullException

The bitmapUri is null.

FileFormatException

The bitmapUri specifies a class ID of an unsupported format type.

The following example demonstrates how to use the Create(Uri^, BitmapCreateOptions, BitmapCacheOption) method to create a decoder for a given image. The first BitmapFrame of the image is used as the source of an Image control.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: