This documentation is for the old version. Go to the latest Graphics Mill docs

Bitmap.Create Method (Color, Single, Single, PixelFormat)

Discards old bitmap data and creates new bitmap of given dimensions and pixel format. Background color is specified.

Namespace: Aurigma.GraphicsMill
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub Create ( _
	background As Color, _
	width As Single, _
	height As Single, _
	format As PixelFormat _
)
C#
public void Create(
	Color background,
	float width,
	float height,
	PixelFormat format
)

Parameters

background

Type: Aurigma.GraphicsMill.Color

Background color to fill the bitmap with.
width

Type: System.Single

Width of new bitmap (in pixels).
height

Type: System.Single

Height of new bitmap (in pixels).
format

Type: Aurigma.GraphicsMill.PixelFormat

Pixel format of new bitmap. If you specify indexed pixel format, uninitialized palette will be generated. You must fill entries yourself. Palette will have maximum possible for given pixel format colors number (2 colors for 1-bit images, 16 colors for 4-bit images, and 256 colors for 8-bit images).

Remarks

If color space of the color does not fit color space of the pixel format, color is converted to necessary color space.

See Also

Reference