Draw Image from Data URL to HTML5 Canvas



If you have a data url, you can create an image to a canvas. This can be done as shown in the following code snippet −

var myImg = new Image;
myImg.src = strDataURI;

The drawImage() method draws an image, canvas, or video onto the canvas. The drawImage() method can also draw parts of an image, and/or increase/reduce the image size.

The code given below is also appropriate with the sequence - create the image, set the onload to use the new image, and then set the src −

// load image from data url
Var Obj = new Image();
Obj.onload = function() {
   context.drawImage(myImg, 0, 0);
};
Obj.src = dataURL;
Updated on: 2020-03-04T05:06:54+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements