BitmapDecoder..::.Create Method (Uri, BitmapCreateOptions, BitmapCacheOption) Home
This page is specific to:.NET Framework Version:3.03.54.0
.NET Framework Class Library
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)
Syntax

'Usage

Dim bitmapUri As Uri
Dim createOptions As BitmapCreateOptions
Dim cacheOption As BitmapCacheOption
Dim returnValue As BitmapDecoder

returnValue = BitmapDecoder.Create(bitmapUri, _
    createOptions, cacheOption)

'Declaration

Public Shared Function Create ( _
    bitmapUri As Uri, _
    createOptions As BitmapCreateOptions, _
    cacheOption As BitmapCacheOption _
) As BitmapDecoder
You cannot use methods in XAML.

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.
Exceptions

ExceptionCondition
ArgumentNullException

The bitmapUri is nullNothingnullptra null reference (Nothing in Visual Basic).

FileFormatException

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

Examples

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.

Dim uriBitmap As BitmapDecoder = BitmapDecoder.Create(New Uri("sampleImages/waterlilies.jpg", UriKind.Relative), BitmapCreateOptions.None, BitmapCacheOption.Default)

' Create an image element;
Dim uriImage As New Image()
uriImage.Width = 200
' Set image source.
uriImage.Source = uriBitmap.Frames(0)


Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

© 2009 Microsoft Corporation. All rights reserved.   Terms of Use | Trademarks | Privacy Statement
Page view tracker
Rate the Lightweight library
x
Lightweight builds on ScriptFree (loband) by adding features you've requested: a SearchBox and default code language selection.
Do you like the SearchBox?
Do you like the tabbed code blocks?
How useful is this topic?
Tell us more.
Thanks
x
You're helping to improve MSDN Online.
Feedback
Switch View
Classic
Lightweight Beta
ScriptFree
Switch View