Skip to content

Instantly share code, notes, and snippets.

@zachmullen
Created May 20, 2024 15:50
Show Gist options
  • Save zachmullen/a66b215f5f23bac32bb895970c26e191 to your computer and use it in GitHub Desktop.
Save zachmullen/a66b215f5f23bac32bb895970c26e191 to your computer and use it in GitHub Desktop.
Save all canvas contents on the page to PNG files
const canvases = document.querySelectorAll('canvas');
for (let i = 0; i < canvases.length; i++) {
const canvas = canvases[i];
const link = document.createElement('a');
link.download = `canvas-${i}.png`;
link.href = canvas.toDataURL();
link.click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment