Skip to content

Instantly share code, notes, and snippets.

@saggie
Last active January 3, 2019 06:25
Show Gist options
  • Select an option

  • Save saggie/466ff4499478cd73e651d1a5d58c3bb1 to your computer and use it in GitHub Desktop.

Select an option

Save saggie/466ff4499478cd73e651d1a5d58c3bb1 to your computer and use it in GitHub Desktop.
Download a canvas image
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