IndexedBitmapIHandlerCreate Method |
Creates a new indexed bitmap with the specified size and bits per pixel
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax void Create(
int width,
int height,
int bitsPerPixel
)
Sub Create (
width As Integer,
height As Integer,
bitsPerPixel As Integer
)
abstract Create :
width : int *
height : int *
bitsPerPixel : int -> unit
Parameters
- width
- Type: SystemInt32
Width in pixels of the bitmap - height
- Type: SystemInt32
Height in pixels of the bitmap - bitsPerPixel
- Type: SystemInt32
Number of bits per pixel, usually 4 (16 colours), 8 (64 colours), or 8 (256 colours)
See Also