Skip to content

Instantly share code, notes, and snippets.

@rokumatsumoto
Created December 28, 2019 12:23
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 rokumatsumoto/c9a82a17a0fbe8bc91c9f96b1fb24939 to your computer and use it in GitHub Desktop.
Save rokumatsumoto/c9a82a17a0fbe8bc91c9f96b1fb24939 to your computer and use it in GitHub Desktop.
download blob
let URLObj = window.URL || window.webkitURL;
let a = document.createElement("a");
a.href = URLObj.createObjectURL(blob);
a.download = "untitled.jpg";
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment