Computer >> Computer tutorials >  >> Programming >> HTML

Drawing an SVG file on an HTML5 canvas


To drawHTMLImageElements on a canvas element, use the drawImage() method.This method defines an Image variable with src=”mySVG.svg”, anduse drawImage on load.

var myImg = new Image();
myImg.onload = function() {
   ctx.drawImage(myImg, 0, 0);
}
img.src = "https://www.example.com/files/sample.svg ";