Skip to content

Instantly share code, notes, and snippets.

@nelsonfncosta
Last active May 13, 2025 14:16
Show Gist options
  • Save nelsonfncosta/2c90fed5b9f0ee79b899854c4ab3de7b to your computer and use it in GitHub Desktop.
Save nelsonfncosta/2c90fed5b9f0ee79b899854c4ab3de7b to your computer and use it in GitHub Desktop.
Convert Canvas pdf element to downloadable image
function downloadImage(elem) {
const image = elem.toDataURL("image/png").replace("image/png", "image/octet-stream");
const a = document.createElement("a");
a.href = image;
a.download = "image.png"; // Specify the file name here
a.click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment