Skip to content

Instantly share code, notes, and snippets.

@justforuse
Created October 21, 2020 09:53
Show Gist options
  • Save justforuse/6edd1cd96b64ae815e4af1992c8d99c2 to your computer and use it in GitHub Desktop.
Save justforuse/6edd1cd96b64ae815e4af1992c8d99c2 to your computer and use it in GitHub Desktop.
JavaScript download canvas as image
const a = document.createElement('a');
const ele = document.querySelector('canvas');
a.download = 'img.png';
a.addEventListener('click', () => {
a.href = ele?.toDataURL("image/png");
})
a.click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment