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

BitmapData.Import Method

Fills the pixels of the current BitmapData object from given 3D array.

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

Syntax

Visual Basic
Public Sub Import ( _
	array As Integer(,,) _
)
C#
public void Import(
	int[,,] array
)

Parameters

array

Type: System.Int32 [,]

Array of image pixels should have the following format: first dimension is bitmap columns, second dimension is a bitmap rows, third dimension is a pixels channels.
Note

Array width, height, and channel number must conform current bitmap data dimensions and pixel format.

See Also

Reference