Last active
December 20, 2015 14:19
-
-
Save sTiLL-iLL/6146253 to your computer and use it in GitHub Desktop.
Converts canvas to an image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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