Initializes a new instance of the BitmapData class
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax protected BitmapData(
Image image,
IntPtr data,
int scanWidth,
int bitsPerPixel,
Object controlObject
)
Protected Sub New (
image As Image,
data As IntPtr,
scanWidth As Integer,
bitsPerPixel As Integer,
controlObject As Object
)
new :
image : Image *
data : IntPtr *
scanWidth : int *
bitsPerPixel : int *
controlObject : Object -> BitmapData
Parameters
- image
- Type: Eto.DrawingImage
Image this data is for - data
- Type: SystemIntPtr
Pointer to the bitmap data - scanWidth
- Type: SystemInt32
Width of each scan row, in bytes - bitsPerPixel
- Type: SystemInt32
Bits per pixel - controlObject
- Type: SystemObject
Platform specific object for the bitmap data (if any)
See Also