Skip to content

Instantly share code, notes, and snippets.

@mrhaw
Forked from gustavohenke/svg2png.js
Created August 4, 2017 07:07
Show Gist options
  • Save mrhaw/2398ba55492de008984122ffd8f318a5 to your computer and use it in GitHub Desktop.
Save mrhaw/2398ba55492de008984122ffd8f318a5 to your computer and use it in GitHub Desktop.
SVG to PNG
var svg = document.querySelector( "svg" );
var svgData = new XMLSerializer().serializeToString( svg );
var canvas = document.createElement( "canvas" );
var ctx = canvas.getContext( "2d" );
var img = document.createElement( "img" );
img.setAttribute( "src", "data:image/svg+xml;base64," + btoa( svgData ) );
img.onload = function() {
ctx.drawImage( img, 0, 0 );
// Now is done
console.log( canvas.toDataURL( "image/png" ) );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment