BitmapFrame.GetSoftwareBitmapAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetSoftwareBitmapAsync() |
Asynchronously gets a SoftwareBitmap representation of the bitmap frame. |
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode) |
Asynchronously gets a SoftwareBitmap representation of the bitmap frame. |
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode) |
Asynchronously gets a SoftwareBitmap representation of the bitmap frame. |
GetSoftwareBitmapAsync()
Asynchronously gets a SoftwareBitmap representation of the bitmap frame.
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)
Returns
An asynchronous operation that returns a SoftwareBitmap on successful completion.
Implements
- Attributes
See also
- GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode)
- GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode)
Applies to
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode)
Asynchronously gets a SoftwareBitmap representation of the bitmap frame.
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)
Parameters
- pixelFormat
- BitmapPixelFormat
The pixel format of the software bitmap.
- alphaMode
- BitmapAlphaMode
The alpha mode of the software bitmap.
Returns
An asynchronous operation that returns a SoftwareBitmap on successful completion.
Implements
- Attributes
See also
- GetSoftwareBitmapAsync()
- GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode)
Applies to
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode)
Asynchronously gets a SoftwareBitmap representation of the bitmap frame.
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)
Parameters
- pixelFormat
- BitmapPixelFormat
The pixel format of the software bitmap.
- alphaMode
- BitmapAlphaMode
The alpha mode of the software bitmap.
- transform
- BitmapTransform
The transform of the software bitmap.
- exifOrientationMode
- ExifOrientationMode
The EXIF orientation mode of the software bitmap.
- colorManagementMode
- ColorManagementMode
The color management mode of the software bitmap.
Returns
An asynchronous operation that returns a SoftwareBitmap on successful completion.
Implements
- Attributes