Skip to content

Instantly share code, notes, and snippets.

@nasitra
Created August 21, 2016 06:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nasitra/0e3cc736c785f77b6a206b3334845413 to your computer and use it in GitHub Desktop.
Save nasitra/0e3cc736c785f77b6a206b3334845413 to your computer and use it in GitHub Desktop.
Save canvas as an image file
var canvas = document.getElementById('canvas');
var image = canvas.toDataURL('image/png').replace('image/png', 'image/octet-stream');
window.location.href = image;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment