Skip to content

Instantly share code, notes, and snippets.

@ggamel
Forked from caged/svg-to-png.js
Created January 27, 2013 18:21
Show Gist options
  • Save ggamel/4649564 to your computer and use it in GitHub Desktop.
Save ggamel/4649564 to your computer and use it in GitHub Desktop.
var svg = document.getElementById('graph'),
xml = new XMLSerializer().serializeToString(svg),
data = "data:image/svg+xml;base64," + btoa(xml),
img = new Image()
img.setAttribute('src', data)
document.body.appendChild(img)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment