This method loads a bmp file that has been saved in seperate YCrCb planes.
[Visual Basic] Public Function
YCCBmpPlaneFileLoad(YFileName As String, CrFileName As String,
CbFileName As String) As Boolean
[C#] public bool YCCBmpPlaneFileLoad(string
YFileName, string CrFileName, string CbFileName);
Parameters
YFileName
The filename of the Y plane image to be
loaded
CrFileName
The filename of the Cr plane image to be
loaded
CbFileName
The filename of the Cb plane image to be
loaded
Return Value
Returns True if successful. Returns False if unsuccessful.
Explanation
The YCCBmpPlaneFileLoad method loads a bmp file that has been saved in seperate YCrCb planes. The individual YCrCb plane images are 8 bit grayscale and the output image is 24 bit color.
If successful, the output image will be set in the Image property or the Layer(LayerNumber).Image property according to the value set in the LayerNumber property.