Imaging.CreateBitmapSourceFromMemorySection Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Retorna um BitmapSource gerenciado, com base no local de memória não gerenciada fornecido.
public:
static System::Windows::Media::Imaging::BitmapSource ^ CreateBitmapSourceFromMemorySection(IntPtr section, int pixelWidth, int pixelHeight, System::Windows::Media::PixelFormat format, int stride, int offset);
[System.Security.SecurityCritical]
public static System.Windows.Media.Imaging.BitmapSource CreateBitmapSourceFromMemorySection (IntPtr section, int pixelWidth, int pixelHeight, System.Windows.Media.PixelFormat format, int stride, int offset);
public static System.Windows.Media.Imaging.BitmapSource CreateBitmapSourceFromMemorySection (IntPtr section, int pixelWidth, int pixelHeight, System.Windows.Media.PixelFormat format, int stride, int offset);
[<System.Security.SecurityCritical>]
static member CreateBitmapSourceFromMemorySection : nativeint * int * int * System.Windows.Media.PixelFormat * int * int -> System.Windows.Media.Imaging.BitmapSource
static member CreateBitmapSourceFromMemorySection : nativeint * int * int * System.Windows.Media.PixelFormat * int * int -> System.Windows.Media.Imaging.BitmapSource
Public Shared Function CreateBitmapSourceFromMemorySection (section As IntPtr, pixelWidth As Integer, pixelHeight As Integer, format As PixelFormat, stride As Integer, offset As Integer) As BitmapSource
Parâmetros
- section
-
IntPtr
nativeint
Um ponteiro para uma seção de memória.
- pixelWidth
- Int32
Um inteiro que especifica a largura, em pixels, do bitmap.
- pixelHeight
- Int32
Um inteiro que especifica a altura, em pixels, do bitmap.
- format
- PixelFormat
Um valor da enumeração.
- stride
- Int32
A distância do bitmap.
- offset
- Int32
O deslocamento de bytes no fluxo de memória em que a imagem é iniciada.
Retornos
O BitmapSource criado.
- Atributos