I have placed an image on canvas, now I want to be able to drag and drop it anywhere on the canvas. How do I go about it?.
var imageObj = new Image();
imageObj.src = "bulb.jpg";
imageObj.onload = function() {
canvasContext.drawImage(imageObj, 200,80);
};