I have this code that draw a circle on the canvas.
create: function(){
context.beginPath();
context.arc(this.x, this.y, this.radius, 0, Math.PI * 2, false);
context.fill();
}
Is it possible to replace the circles with images?