Skip to content

Instantly share code, notes, and snippets.

@arikui
Created September 23, 2010 16:33
Show Gist options
  • Save arikui/593930 to your computer and use it in GitHub Desktop.
Save arikui/593930 to your computer and use it in GitHub Desktop.
var canvas = document.createElement("canvas");
var context = canvas.getContext("2d");
var img = document.querySelector("img");
canvas.width = img.naturalWidth;
canvas.height = img.naturalHeight;
context.drawImage(img);
document.body.textContent = canvas.toDataURL();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment