SoftwareBitmap.CreateCopyFromBuffer Metodo

Definizione

Overload

CreateCopyFromBuffer(IBuffer, BitmapPixelFormat, Int32, Int32, BitmapAlphaMode)

Crea un nuovo SoftwareBitmap eseguendo una copia completa del buffer fornito. Le modifiche ai dati nel nuovo SoftwareBitmap non avranno effetto sul buffer da cui è stato creato.

CreateCopyFromBuffer(IBuffer, BitmapPixelFormat, Int32, Int32)

Crea un nuovo SoftwareBitmap eseguendo una copia completa del buffer fornito. Le modifiche ai dati nel nuovo SoftwareBitmap non avranno effetto sul buffer da cui è stato creato.

CreateCopyFromBuffer(IBuffer, BitmapPixelFormat, Int32, Int32, BitmapAlphaMode)

Crea un nuovo SoftwareBitmap eseguendo una copia completa del buffer fornito. Le modifiche ai dati nel nuovo SoftwareBitmap non avranno effetto sul buffer da cui è stato creato.

public:
 static SoftwareBitmap ^ CreateCopyFromBuffer(IBuffer ^ source, BitmapPixelFormat format, int width, int height, BitmapAlphaMode alpha);
/// [Windows.Foundation.Metadata.Overload("CreateCopyWithAlphaFromBuffer")]
 static SoftwareBitmap CreateCopyFromBuffer(IBuffer const& source, BitmapPixelFormat const& format, int const& width, int const& height, BitmapAlphaMode const& alpha);
[Windows.Foundation.Metadata.Overload("CreateCopyWithAlphaFromBuffer")]
public static SoftwareBitmap CreateCopyFromBuffer(IBuffer source, BitmapPixelFormat format, int width, int height, BitmapAlphaMode alpha);
function createCopyFromBuffer(source, format, width, height, alpha)
Public Shared Function CreateCopyFromBuffer (source As IBuffer, format As BitmapPixelFormat, width As Integer, height As Integer, alpha As BitmapAlphaMode) As SoftwareBitmap

Parametri

source
IBuffer

Buffer di origine da cui verrà creata la copia.

format
BitmapPixelFormat

Formato pixel della bitmap del software.

width
Int32

int

Larghezza della bitmap del software, in pixel.

height
Int32

int

Altezza della bitmap del software, in pixel.

alpha
BitmapAlphaMode

Modalità alfa della bitmap del software.

Restituisce

Nuova bitmap del software.

Attributi

Vedi anche

Si applica a

CreateCopyFromBuffer(IBuffer, BitmapPixelFormat, Int32, Int32)

Crea un nuovo SoftwareBitmap eseguendo una copia completa del buffer fornito. Le modifiche ai dati nel nuovo SoftwareBitmap non avranno effetto sul buffer da cui è stato creato.

public:
 static SoftwareBitmap ^ CreateCopyFromBuffer(IBuffer ^ source, BitmapPixelFormat format, int width, int height);
/// [Windows.Foundation.Metadata.Overload("CreateCopyFromBuffer")]
 static SoftwareBitmap CreateCopyFromBuffer(IBuffer const& source, BitmapPixelFormat const& format, int const& width, int const& height);
[Windows.Foundation.Metadata.Overload("CreateCopyFromBuffer")]
public static SoftwareBitmap CreateCopyFromBuffer(IBuffer source, BitmapPixelFormat format, int width, int height);
function createCopyFromBuffer(source, format, width, height)
Public Shared Function CreateCopyFromBuffer (source As IBuffer, format As BitmapPixelFormat, width As Integer, height As Integer) As SoftwareBitmap

Parametri

source
IBuffer

Buffer di origine da cui verrà creata la copia.

format
BitmapPixelFormat

Formato pixel della bitmap del software.

width
Int32

int

Larghezza della bitmap del software, in pixel.

height
Int32

int

Altezza della bitmap del software, in pixel.

Restituisce

Nuova bitmap del software.

Attributi

Commenti

Usare questo metodo e i relativi overload per copiare dati da PixelBuffer di un oggetto WriteableBitmap in un SoftwareBitmap esistente.

Vedi anche

Si applica a