Skip to content

Instantly share code, notes, and snippets.

@lin
Last active August 29, 2015 14:07
Show Gist options
  • Save lin/02043cdf4aab3a72b4bf to your computer and use it in GitHub Desktop.
Save lin/02043cdf4aab3a72b4bf to your computer and use it in GitHub Desktop.
convert svg to png through browser
<!DOCTYPE html>
<meta charset="utf-8">
<canvas></canvas>
<script>
var canvas = document.querySelector("canvas"),
context = canvas.getContext("2d");
var image = new Image;
image.src = "math.svg";
image.onload = function() {
canvas.width = image.width;
canvas.height = image.height;
context.drawImage(image, 0, 0);
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment