image.drawImage()
This function is deprecated, use ImagePaste() instead.
Draws a image on a image with the baseline of the first character positioned at (x, y) in the image.
image.drawImage( image=any, x=number, y=number )
Returns: Image
Examples
imgOne=imageNew("",100,100,"RGB","red");
imgTwo=imageNew("",40,30,"RGB","##ffffff");
imgOne.drawImage(imgTwo,30,10);
cfimage(action="writeToBrowser",source=imgOne);