Skip to content

Instantly share code, notes, and snippets.

@sTiLL-iLL
Created August 3, 2013 12:12
Show Gist options
  • Save sTiLL-iLL/6146247 to your computer and use it in GitHub Desktop.
Save sTiLL-iLL/6146247 to your computer and use it in GitHub Desktop.
img 2 canvas
// Converts image to canvas; returns new canvas element
function Img2Cnvs(image) {
var canvas = document.createElement("canvas");
canvas.width = image.width;
canvas.height = image.height;
canvas.getContext("2d").drawImage(image, 0, 0);
return canvas;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment