BitmapDecoder.CreateAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
CreateAsync(IRandomAccessStream) |
Crée de manière asynchrone un nouveau BitmapDecoder et l’initialise à l’aide d’un flux. |
CreateAsync(Guid, IRandomAccessStream) |
Crée de façon asynchrone un nouveau BitmapDecoder à l’aide d’un codec bitmap spécifique et l’initialise à l’aide d’un flux. |
CreateAsync(IRandomAccessStream)
Crée de manière asynchrone un nouveau BitmapDecoder et l’initialise à l’aide d’un flux.
public:
static IAsyncOperation<BitmapDecoder ^> ^ CreateAsync(IRandomAccessStream ^ stream);
/// [Windows.Foundation.Metadata.Overload("CreateAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<BitmapDecoder> CreateAsync(IRandomAccessStream const& stream);
[Windows.Foundation.Metadata.Overload("CreateAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<BitmapDecoder> CreateAsync(IRandomAccessStream stream);
function createAsync(stream)
Public Shared Function CreateAsync (stream As IRandomAccessStream) As IAsyncOperation(Of BitmapDecoder)
Paramètres
- stream
- IRandomAccessStream
Flux contenant le fichier image à décoder.
Retours
Objet qui gère la création asynchrone d’un bitmapDecoder.
- Attributs
Remarques
Windows.Graphics.Imaging détermine automatiquement le décodeur bitmap approprié pour décoder le flux.
Voir aussi
S’applique à
CreateAsync(Guid, IRandomAccessStream)
Crée de façon asynchrone un nouveau BitmapDecoder à l’aide d’un codec bitmap spécifique et l’initialise à l’aide d’un flux.
public:
static IAsyncOperation<BitmapDecoder ^> ^ CreateAsync(Platform::Guid decoderId, IRandomAccessStream ^ stream);
/// [Windows.Foundation.Metadata.Overload("CreateWithIdAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<BitmapDecoder> CreateAsync(winrt::guid const& decoderId, IRandomAccessStream const& stream);
[Windows.Foundation.Metadata.Overload("CreateWithIdAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<BitmapDecoder> CreateAsync(Guid decoderId, IRandomAccessStream stream);
function createAsync(decoderId, stream)
Public Shared Function CreateAsync (decoderId As Guid, stream As IRandomAccessStream) As IAsyncOperation(Of BitmapDecoder)
Paramètres
- decoderId
-
Guid
Platform::Guid
winrt::guid
Identificateur unique du codec bitmap spécifié.
- stream
- IRandomAccessStream
Flux contenant le fichier image à décoder.
Retours
Objet qui gère la création asynchrone d’un bitmapDecoder.
- Attributs
Remarques
Cette méthode permet à l’application de sélectionner explicitement le décodeur bitmap à utiliser et de contourner tout arbitrage de codec automatique. Les identificateurs uniques des décodeurs intégrés sont disponibles en tant que propriétés sur BitmapDecoder. En outre, l’identificateur unique de n’importe quel décodeur installé peut être obtenu à l’aide de la méthode GetDecoderInformationEnumerator .