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)
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 pixel format for the new Bitmap. This must specify a value that begins with Format.
- scan0
- Type: System.IntPtr
Pointer to an array of bytes that contains the pixel data.
| Exception | Condition |
|---|---|
| ArgumentException | A PixelFormat value is specified whose name does not start with Format. For example, specifying Gdi will cause an ArgumentException, but Format48bppRgb will not. |
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.
The following code example shows how to use the Bitmap(Int32, Int32, Int32, PixelFormat, IntPtr) constructor. This example is designed to be used with Windows Forms and requires a PaintEventArgs parameter, which is a parameter of the Paint event.
private void BitmapConstructorEx(PaintEventArgs e) { // Create a bitmap. Bitmap bmp = new Bitmap("c:\\fakePhoto.jpg"); // Retrieve the bitmap data from the the bitmap. System.Drawing.Imaging.BitmapData bmpData = bmp.LockBits(new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.ReadOnly, bmp.PixelFormat); //Create a new bitmap. Bitmap newBitmap = new Bitmap(200, 200, bmpData.Stride, bmp.PixelFormat, bmpData.Scan0); bmp.UnlockBits(bmpData); // Draw the new bitmap. e.Graphics.DrawImage(newBitmap, 10, 10); }
- SecurityPermission
for calling into unmanaged code. Related enumeration: UnmanagedCode
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.