This method loads a bmp file that has been saved in seperate CMYK planes.
[Visual Basic] Public Function
CMYKBmpPlaneFileLoad(CFileName As String, MFileName As String,
YFileName As String, KFileName As String) As Boolean
[C#] public bool CMYKBmpPlaneFileLoad(string
CFileName, string MFileName, string YFileName, string KFileName)
;
Parameters
CFileName
The filename of the C plane image to be
loaded
MFileName
The filename of the M plane image to be
loaded
YFileName
The filename of the Y plane image to be
loaded
KFileName
The filename of the K plane image to be
loaded
Return Value
Returns True if successful. Returns False if unsuccessful.
Explanation
The CMYKBmpPlaneFileLoad method loads a bmp file that has been saved in seperate CMYK planes. The individual CMYK plane images must be 8 bit grayscale. The output image will be 24 bit color.
If successful, the output image will be set in the Image property or the Layer(LayerNumber).Imgae property according to the value set in the LayerNumber property.