This method creates a single raster image from seperate bmp images representing each of the CMYK planes

[Visual Basic]
Public Function CombineCmykImage(cyan As Image, magenta As Image, yellow As Image, black As Image, destinationImage As Image) As Boolean
[C#]
public bool CombineCmykImage(Image cyan, Image magenta, Image yellow, Image black, ref Image destinationImage) ;

Parameters

cyan
     The 8 bit grayscale image representing the C plane

magenta
     The 8 bit grayscale image representing the M plane

yellow
     The 8 bit grayscale image representing the Y plane

black
     The 8 bit grayscale image representing the K plane

destinationImage
     The 24 bit color raster image created from the combination of the above C, M, Y, and K plane images

Return Value

Returns True if successful. Returns False if unsuccessful.

Explanation

The CombineCmykImage method creates a single raster image from seperate bmp images representing each of the CMYK planes. The various images representing each of the CMYK planes are 8 bit grayscale. If successful, the resulting image created by combining these C, M, Y, and K plane images is a 24 bit color raster image and is set in the destinationImage parameter.

See Also

Effect Class | Effect Members

The ImageKit.NET3 is created by Newtone Corporation