Imaging.CreateBitmapSourceFromMemorySection 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.
Gibt auf der Grundlage der bereitgestellten nicht verwalteten Speicheradresse eine verwaltete BitmapSource zurück.
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
Parameter
- section
-
IntPtr
nativeint
Ein Zeiger auf einen Speicherabschnitt.
- pixelWidth
- Int32
Eine ganze Zahl, die die Breite der Bitmap in Pixel angibt.
- pixelHeight
- Int32
Eine ganze Zahl, die die Höhe der Bitmap in Pixel angibt.
- format
- PixelFormat
Ein Wert aus der Enumeration.
- stride
- Int32
Der Schritt der Bitmap.
- offset
- Int32
Der Byteoffset in dem Speicherstream, in dem das Bild beginnt.
Gibt zurück
Der erstellte BitmapSource.
- Attribute