Converts several colors into another pixel format. These colors are represented by array. Here you can pass a palette for converting colors to indexed format. Color management is not applied.
Namespace:
Aurigma.GraphicsMill.Transforms
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Function ConvertArray ( _ array As Integer(,,), _ format As PixelFormat, _ palette As ColorPalette _ ) As Integer(,,)
public int[,,] ConvertArray( int[,,] array, PixelFormat format, ColorPalette palette )
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. Array with this format is returned from Export() method of Bitmap and BitmapData.
Array channel number (third dimension) must conform pixel format specified by format argument.
Type: Aurigma.GraphicsMill.PixelFormat
PixelFormat value that describes pixel format for the pixels in the specified array.Type: Aurigma.GraphicsMill.ColorPalette
ColorPalette class instance that is used for conversion into indexe pixel format.The destination pixel format is specified by DestinationPixelFormat property.