Smooths (blurs) the ColdFusion image.
imageBlur(name [, blurradius])
→ returns void
someImage.blur(blurradius)
3
This example shows how to blur an image by a radius of 10.
<cfset imageBlur(myImage,10)>
CF 11+ Lucee 4.5+ Smooth or blur an image
imgObj = imageRead("http://cfdocs.org/apple-touch-icon.png");
imgObj.blur(5);
cfimage(action="writeToBrowser", source=imgObj);
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.