Skip to content

Instantly share code, notes, and snippets.

@andy3520
Created January 21, 2020 07:09
Show Gist options
  • Save andy3520/a802c6c305848fa2c49c4049646c233b to your computer and use it in GitHub Desktop.
Save andy3520/a802c6c305848fa2c49c4049646c233b to your computer and use it in GitHub Desktop.
// other type like gif, bmp,... maybe not working because browser not
// it may fallback to png
function saveImage(canvas, exportType) {
window.open(canvas.toDataURL(`image/${exportType}`));
var gh = canvas.toDataURL(exportType);
var a = document.createElement('a');
a.href = gh;
a.download = `image.${exportType}`;
a.click()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment