Bitmap Constructor (Int32, Int32, Int32, PixelFormat, IntPtr)
Initializes a new instance of the Bitmap class with the specified size, pixel format, and pixel data.
Assembly: System.Drawing (in System.Drawing.dll)
public: Bitmap( int width, int height, int stride, PixelFormat format, IntPtr scan0 )
Parameters
- width
- Type: System::Int32
The width, in pixels, of the new Bitmap.
- height
- Type: System::Int32
The height, in pixels, of the new Bitmap.
- stride
- Type: System::Int32
Integer that specifies the byte offset between the beginning of one scan line and the next. This is usually (but not necessarily) the number of bytes in the pixel format (for example, 2 for 16 bits per pixel) multiplied by the width of the bitmap. The value passed to this parameter must be a multiple of four..
- format
- Type: System.Drawing.Imaging::PixelFormat
The PixelFormat enumeration for the new Bitmap.
- scan0
- Type: System::IntPtr
Pointer to an array of bytes that contains the pixel data.
The caller is responsible for allocating and freeing the block of memory specified by the scan0 parameter, however, the memory should not be released until the related Bitmap is released.
- SecurityPermission
for calling into unmanaged code. Related enumeration: UnmanagedCode
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
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.