SoftwareBitmap.CreateCopyFromSurfaceAsync 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
CreateCopyFromSurfaceAsync(IDirect3DSurface) |
Erstellt asynchron eine neue SoftwareBitmap , indem eine tiefe Kopie der bereitgestellten IDirect3DSurface ausgeführt wird. Änderungen an den Daten in der neuen SoftwareBitmap wirken sich nicht auf die Oberfläche aus, auf der sie erstellt wurden. |
CreateCopyFromSurfaceAsync(IDirect3DSurface, BitmapAlphaMode) |
Erstellt asynchron eine neue SoftwareBitmap , indem eine tiefe Kopie der bereitgestellten IDirect3DSurface ausgeführt wird. Änderungen an den Daten in der neuen SoftwareBitmap wirken sich nicht auf die Oberfläche aus, auf der sie erstellt wurden. |
CreateCopyFromSurfaceAsync(IDirect3DSurface)
Erstellt asynchron eine neue SoftwareBitmap , indem eine tiefe Kopie der bereitgestellten IDirect3DSurface ausgeführt wird. Änderungen an den Daten in der neuen SoftwareBitmap wirken sich nicht auf die Oberfläche aus, auf der sie erstellt wurden.
public:
static IAsyncOperation<SoftwareBitmap ^> ^ CreateCopyFromSurfaceAsync(IDirect3DSurface ^ surface);
/// [Windows.Foundation.Metadata.Overload("CreateCopyFromSurfaceAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<SoftwareBitmap> CreateCopyFromSurfaceAsync(IDirect3DSurface const& surface);
[Windows.Foundation.Metadata.Overload("CreateCopyFromSurfaceAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<SoftwareBitmap> CreateCopyFromSurfaceAsync(IDirect3DSurface surface);
function createCopyFromSurfaceAsync(surface)
Public Shared Function CreateCopyFromSurfaceAsync (surface As IDirect3DSurface) As IAsyncOperation(Of SoftwareBitmap)
Parameter
- surface
- IDirect3DSurface
Die Quelloberfläche, auf der die Kopie erstellt wird.
Gibt zurück
Ein asynchroner Vorgang, der bei erfolgreicher Fertigstellung eine SoftwareBitmap zurückgibt.
- Attribute
Weitere Informationen
Gilt für:
CreateCopyFromSurfaceAsync(IDirect3DSurface, BitmapAlphaMode)
Erstellt asynchron eine neue SoftwareBitmap , indem eine tiefe Kopie der bereitgestellten IDirect3DSurface ausgeführt wird. Änderungen an den Daten in der neuen SoftwareBitmap wirken sich nicht auf die Oberfläche aus, auf der sie erstellt wurden.
public:
static IAsyncOperation<SoftwareBitmap ^> ^ CreateCopyFromSurfaceAsync(IDirect3DSurface ^ surface, BitmapAlphaMode alpha);
/// [Windows.Foundation.Metadata.Overload("CreateCopyWithAlphaFromSurfaceAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<SoftwareBitmap> CreateCopyFromSurfaceAsync(IDirect3DSurface const& surface, BitmapAlphaMode const& alpha);
[Windows.Foundation.Metadata.Overload("CreateCopyWithAlphaFromSurfaceAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<SoftwareBitmap> CreateCopyFromSurfaceAsync(IDirect3DSurface surface, BitmapAlphaMode alpha);
function createCopyFromSurfaceAsync(surface, alpha)
Public Shared Function CreateCopyFromSurfaceAsync (surface As IDirect3DSurface, alpha As BitmapAlphaMode) As IAsyncOperation(Of SoftwareBitmap)
Parameter
- surface
- IDirect3DSurface
Die Quelloberfläche, auf der die Kopie erstellt wird.
- alpha
- BitmapAlphaMode
Der Alphamodus der Softwarebitbitbit.
Gibt zurück
Ein asynchroner Vorgang, der bei erfolgreicher Fertigstellung eine SoftwareBitmap zurückgibt.
- Attribute