Skip to content

Instantly share code, notes, and snippets.

@sTiLL-iLL
Last active December 20, 2015 14:19
Show Gist options
  • Save sTiLL-iLL/6146253 to your computer and use it in GitHub Desktop.
Save sTiLL-iLL/6146253 to your computer and use it in GitHub Desktop.
Converts canvas to an image
// Converts canvas to an image
function Cnvs2Img(canvas) {
var image = new Image();
image.src = canvas.toDataURL("image/png");
return image;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment