Last active
January 3, 2019 06:25
-
-
Save saggie/466ff4499478cd73e651d1a5d58c3bb1 to your computer and use it in GitHub Desktop.
Download a canvas 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
| const dummyLink = document.createElement("a"); | |
| dummyLink.download = "image_file_name.png" | |
| const canvas = document.getElementById("canvas"); | |
| canvas.toBlob(function (blob) { | |
| dummyLink.href = window.URL.createObjectURL(blob); | |
| document.body.appendChild(dummyLink); | |
| dummyLink.click(); | |
| document.body.removeChild(dummyLink); | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment