BitmapDecoder.GetSoftwareBitmapAsync Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
GetSoftwareBitmapAsync() |
Ruft asynchron eine SoftwareBitmap-Darstellung der decodierten Bitmap ab. |
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode) |
Ruft asynchron eine SoftwareBitmap-Darstellung der decodierten Bitmap ab. |
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode) |
Ruft asynchron eine SoftwareBitmap-Darstellung der decodierten Bitmap ab. |
GetSoftwareBitmapAsync()
Ruft asynchron eine SoftwareBitmap-Darstellung der decodierten Bitmap ab.
public:
virtual IAsyncOperation<SoftwareBitmap ^> ^ GetSoftwareBitmapAsync() = GetSoftwareBitmapAsync;
/// [Windows.Foundation.Metadata.Overload("GetSoftwareBitmapAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<SoftwareBitmap> GetSoftwareBitmapAsync();
[Windows.Foundation.Metadata.Overload("GetSoftwareBitmapAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<SoftwareBitmap> GetSoftwareBitmapAsync();
function getSoftwareBitmapAsync()
Public Function GetSoftwareBitmapAsync () As IAsyncOperation(Of SoftwareBitmap)
Gibt zurück
Ein asynchroner Vorgang, der bei erfolgreicher Fertigstellung eine SoftwareBitmap zurückgibt.
Implementiert
- Attribute
Weitere Informationen
- GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode)
- GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode)
Gilt für:
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode)
Ruft asynchron eine SoftwareBitmap-Darstellung der decodierten Bitmap ab.
public:
virtual IAsyncOperation<SoftwareBitmap ^> ^ GetSoftwareBitmapAsync(BitmapPixelFormat pixelFormat, BitmapAlphaMode alphaMode) = GetSoftwareBitmapAsync;
/// [Windows.Foundation.Metadata.Overload("GetSoftwareBitmapConvertedAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<SoftwareBitmap> GetSoftwareBitmapAsync(BitmapPixelFormat const& pixelFormat, BitmapAlphaMode const& alphaMode);
[Windows.Foundation.Metadata.Overload("GetSoftwareBitmapConvertedAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<SoftwareBitmap> GetSoftwareBitmapAsync(BitmapPixelFormat pixelFormat, BitmapAlphaMode alphaMode);
function getSoftwareBitmapAsync(pixelFormat, alphaMode)
Public Function GetSoftwareBitmapAsync (pixelFormat As BitmapPixelFormat, alphaMode As BitmapAlphaMode) As IAsyncOperation(Of SoftwareBitmap)
Parameter
- pixelFormat
- BitmapPixelFormat
Das Pixelformat der Software-Bitmap.
- alphaMode
- BitmapAlphaMode
Der Alphamodus der Software-Bitmap.
Gibt zurück
Ein asynchroner Vorgang, der bei erfolgreicher Fertigstellung eine SoftwareBitmap zurückgibt.
Implementiert
- Attribute
Weitere Informationen
- GetSoftwareBitmapAsync()
- GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode)
Gilt für:
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode)
Ruft asynchron eine SoftwareBitmap-Darstellung der decodierten Bitmap ab.
public:
virtual IAsyncOperation<SoftwareBitmap ^> ^ GetSoftwareBitmapAsync(BitmapPixelFormat pixelFormat, BitmapAlphaMode alphaMode, BitmapTransform ^ transform, ExifOrientationMode exifOrientationMode, ColorManagementMode colorManagementMode) = GetSoftwareBitmapAsync;
/// [Windows.Foundation.Metadata.Overload("GetSoftwareBitmapTransformedAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<SoftwareBitmap> GetSoftwareBitmapAsync(BitmapPixelFormat const& pixelFormat, BitmapAlphaMode const& alphaMode, BitmapTransform const& transform, ExifOrientationMode const& exifOrientationMode, ColorManagementMode const& colorManagementMode);
[Windows.Foundation.Metadata.Overload("GetSoftwareBitmapTransformedAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<SoftwareBitmap> GetSoftwareBitmapAsync(BitmapPixelFormat pixelFormat, BitmapAlphaMode alphaMode, BitmapTransform transform, ExifOrientationMode exifOrientationMode, ColorManagementMode colorManagementMode);
function getSoftwareBitmapAsync(pixelFormat, alphaMode, transform, exifOrientationMode, colorManagementMode)
Public Function GetSoftwareBitmapAsync (pixelFormat As BitmapPixelFormat, alphaMode As BitmapAlphaMode, transform As BitmapTransform, exifOrientationMode As ExifOrientationMode, colorManagementMode As ColorManagementMode) As IAsyncOperation(Of SoftwareBitmap)
Parameter
- pixelFormat
- BitmapPixelFormat
Das Pixelformat der Software-Bitmap.
- alphaMode
- BitmapAlphaMode
Der Alphamodus der Software-Bitmap.
- transform
- BitmapTransform
Die Transformation der Software-Bitmap.
- exifOrientationMode
- ExifOrientationMode
Der EXIF-Ausrichtungsmodus der Software-Bitmap.
- colorManagementMode
- ColorManagementMode
Der Farbverwaltungsmodus der Software-Bitmap.
Gibt zurück
Ein asynchroner Vorgang, der bei erfolgreicher Fertigstellung eine SoftwareBitmap zurückgibt.
Implementiert
- Attribute