BitmapFrame.GetSoftwareBitmapAsync Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
GetSoftwareBitmapAsync() |
Obtiene de forma asincrónica una representación softwareBitmap del marco de mapa de bits. |
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode) |
Obtiene de forma asincrónica una representación softwareBitmap del marco de mapa de bits. |
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode) |
Obtiene de forma asincrónica una representación softwareBitmap del marco de mapa de bits. |
GetSoftwareBitmapAsync()
Obtiene de forma asincrónica una representación softwareBitmap del marco de mapa de bits.
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)
Devoluciones
Una operación asincrónica que devuelve un objeto SoftwareBitmap al completarse correctamente.
Implementaciones
- Atributos
Consulte también
- GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode)
- GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode)
Se aplica a
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode)
Obtiene de forma asincrónica una representación softwareBitmap del marco de mapa de bits.
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)
Parámetros
- pixelFormat
- BitmapPixelFormat
Formato de píxel del mapa de bits de software.
- alphaMode
- BitmapAlphaMode
Modo alfa del mapa de bits de software.
Devoluciones
Una operación asincrónica que devuelve un objeto SoftwareBitmap al completarse correctamente.
Implementaciones
- Atributos
Consulte también
- GetSoftwareBitmapAsync()
- GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode)
Se aplica a
GetSoftwareBitmapAsync(BitmapPixelFormat, BitmapAlphaMode, BitmapTransform, ExifOrientationMode, ColorManagementMode)
Obtiene de forma asincrónica una representación softwareBitmap del marco de mapa de bits.
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)
Parámetros
- pixelFormat
- BitmapPixelFormat
Formato de píxel del mapa de bits de software.
- alphaMode
- BitmapAlphaMode
Modo alfa del mapa de bits de software.
- transform
- BitmapTransform
Transformación del mapa de bits de software.
- exifOrientationMode
- ExifOrientationMode
Modo de orientación EXIF del mapa de bits de software.
- colorManagementMode
- ColorManagementMode
Modo de administración de colores del mapa de bits de software.
Devoluciones
Una operación asincrónica que devuelve un objeto SoftwareBitmap al completarse correctamente.
Implementaciones
- Atributos