ImgDropColors |
Top Previous Next |
Prototype
ImgDropColors(intImageHandle, floatHueStart, floatHueEnd, floatSaturationStart, floatSaturationEnd, floatLuminanceStart, floatLuminanceEnd)
Description
Delete a specific range color in an image.
Parameters
intImageHandle: integer value corresponding to image handle.
floatHueStart, floatHueEnd : numeric value corresponding to range color to delete.
floatSaturationStart, floatSaturationEnd : numeric value corresponding to range saturation to delete.
floatLuminanceStart, floatLuminanceEnd : numeric value corresponding to range luminance to delete.
Returned Value
None.
Notes
None.
Example
// Delete a specific color range ImgDropColors(_CurrentImage, 0.0, 0.1, 0.5, 0.1, 0.0, 1.0);
|