.NET Framework Class Library
Imaging..::.CreateBitmapSourceFromMemorySection Method

Returns a managed BitmapSource, based on the provided unmanaged memory location.

Namespace:  System.Windows.Interop
Assembly:  PresentationCore (in PresentationCore.dll)
Syntax

Visual Basic (Declaration)
Public Shared Function CreateBitmapSourceFromMemorySection ( _
    section As IntPtr, _
    pixelWidth As Integer, _
    pixelHeight As Integer, _
    format As PixelFormat, _
    stride As Integer, _
    offset As Integer _
) As BitmapSource
Visual Basic (Usage)
Dim section As IntPtr
Dim pixelWidth As Integer
Dim pixelHeight As Integer
Dim format As PixelFormat
Dim stride As Integer
Dim offset As Integer
Dim returnValue As BitmapSource

returnValue = Imaging.CreateBitmapSourceFromMemorySection(section, _
    pixelWidth, pixelHeight, format, _
    stride, offset)
C#
public static BitmapSource CreateBitmapSourceFromMemorySection(
    IntPtr section,
    int pixelWidth,
    int pixelHeight,
    PixelFormat format,
    int stride,
    int offset
)
Visual C++
public:
static BitmapSource^ CreateBitmapSourceFromMemorySection(
    IntPtr section, 
    int pixelWidth, 
    int pixelHeight, 
    PixelFormat format, 
    int stride, 
    int offset
)
JScript
public static function CreateBitmapSourceFromMemorySection(
    section : IntPtr, 
    pixelWidth : int, 
    pixelHeight : int, 
    format : PixelFormat, 
    stride : int, 
    offset : int
) : BitmapSource
XAML
You cannot use methods in XAML.

Parameters

section
Type: System..::.IntPtr
A pointer to a memory section.
pixelWidth
Type: System..::.Int32
An integer that specifies the width, in pixels, of the bitmap.
pixelHeight
Type: System..::.Int32
An integer that specifies the height, in pixels, of the bitmap.
format
Type: System.Windows.Media..::.PixelFormat
A value of the enumeration.
stride
Type: System..::.Int32
The stride of the bitmap.
offset
Type: System..::.Int32
The byte offset into the memory stream where the image starts.
.NET Framework Security

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Other Resources

Tags :


Page view tracker