BitmapDecoder::Create Method (Stream^, BitmapCreateOptions, BitmapCacheOption)
.NET Framework (current version)
Creates a BitmapDecoder from a Stream by using the specified BitmapCreateOptions and BitmapCacheOption.
Assembly: PresentationCore (in PresentationCore.dll)
public: static BitmapDecoder^ Create( Stream^ bitmapStream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption )
Parameters
- bitmapStream
-
Type:
System.IO::Stream^
The file stream that identifies 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.
Return Value
Type: System.Windows.Media.Imaging::BitmapDecoder^A BitmapDecoder from a Stream by using the specified BitmapCreateOptions and BitmapCacheOption.
The following example demonstrates how to use the Create method to create a decoder for a given image. The first BitmapFrame of the image is used as the source of an Image control.
.NET Framework
Available since 3.0
Available since 3.0
Show: