Skip to content

Instantly share code, notes, and snippets.

@lucas-pelton
Created August 16, 2017 22:54
Show Gist options
  • Save lucas-pelton/1dd3e2f22dfb3026b730d9ce3e2ef88f to your computer and use it in GitHub Desktop.
Save lucas-pelton/1dd3e2f22dfb3026b730d9ce3e2ef88f to your computer and use it in GitHub Desktop.
Auto Download Content from DataURL
// AUTO DOWNLOAD THE IMAGES --> Can be modified to use any DataURL, I suppose
var a = document.createElement('a');
a.href = canvas.toDataURL("image/jpeg");
a.download = 'sample.jpg';
document.body.appendChild(a);
a.click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment