Sets the paint mode of the image to alternate between the image's current color and the new specified color.
imageXORDrawingMode(image, color)
→ returns void
someImage.xorDrawingMode(color)
black
##FFFFFF
or FFFFFF
.black
, red
, green
).CF 11+ Create a new image, set the xorDrawingMode to be the background color, draw a white rectangle, set drawing color to white, draw some points on the image. Where point pixels are the same as background color use XOR color
imgObj = imageNew("",152,152,"rgb","149c82");
imgObj.xorDrawingMode("149c82");
imgObj.setDrawingColor("white");
imgObj.drawRect(50,50,50,50,"yes");
for (i=1;i LTE 100;i=i+1) {
x = randRange(0,152);
y = randRange(0,152);
imgObj.drawPoint(x,y);
}
cfimage(action="writeToBrowser", source=imgObj);
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.