Skip to content

Instantly share code, notes, and snippets.

@vaporwavie
Created January 10, 2022 15:42
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 vaporwavie/2012ed23b2333e3eae160d3c0e05d871 to your computer and use it in GitHub Desktop.
Save vaporwavie/2012ed23b2333e3eae160d3c0e05d871 to your computer and use it in GitHub Desktop.
Save your meme from imgflip without having their watermark (ew)
const canvas = document.querySelector("canvas");
const canvasUrl = canvas.toDataURL();
window.location = canvas
.toDataURL("image/png")
.replace("image/png", "image/octet-stream");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment