ImageSetDrawingColor()
Sets the current drawing color for images. All subsequent graphics operations use the specified color.
Requires Extension: Image extension
ImageSetDrawingColor( image=any, color=string );
Returns: void
Examples
myImg = imageNew("",300,200,"rgb","eccc68");
imageSetDrawingColor(myImg,"009432");//All subsequent graphics operations use the specified color.
ImageDrawLine(myImg,0,0,300,200)
ImageDrawText(myImg,"Plant green,",10,90)
ImageDrawText(myImg,"Save world!",180,100)
cfimage(action="writeToBrowser", source=myImg);
See also
- Image manipulation
- image.setDrawingColor()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)