Converts a ColdFusion image to grayscale.
imageGrayScale(name)
returns void
someImage.grayScale()
Name | Type | Required | Default | Description |
---|---|---|---|---|
name | string | Yes | The image on which this operation is performed. |
CF11+ Lucee4.5+ Convert image to grayScale
imgObj = imageRead("http://cfdocs.org/apple-touch-icon.png");
imgObj.grayScale();
cfimage(action="writeToBrowser", source=imgObj);