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

BitmapData.SetPixel Method

Sets pixel value at the specified coordinates.

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

Syntax

Visual Basic
Public Sub SetPixel ( _
	x As Integer, _
	y As Integer, _
	color As Color _
)
C#
public void SetPixel(
	int x,
	int y,
	Color color
)

Parameters

x

Type: System.Int32

Horizontal position of the pixel.
y

Type: System.Int32

Vertical position of the pixel.
color

Type: Aurigma.GraphicsMill.Color

Color value to put into the bitmap at specified coordinates. It is recommended to make sure that this object has the same color space as the bitmap itself. If color spaces are not match (e.g. bitmap is CMYK and this color is RGB), color will be automatically converted, but no color management will be applied.

Remarks

This method was implemented for easy but slow access to pixels. It works ideally if you need to set one pixel value, for example, when you implement pencil tool. However if you need iterate each pixel in bitmap, it will work too slow. In this case you should consider using Scan0 property instead. This property provides you a direct access to pixels.

See Also

Reference