Skip to content

Instantly share code, notes, and snippets.

@mateuszkocz
Created August 7, 2013 19:06
Show Gist options
  • Save mateuszkocz/6177383 to your computer and use it in GitHub Desktop.
Save mateuszkocz/6177383 to your computer and use it in GitHub Desktop.
Canvas to image
// Set canvas as an image's source.
var data = canvas.toDataURL();
img.src = data; // img implied
// Create image.
var jpg = canvas.toDataURL('image/jpeg',.7); // .7 is compression
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment