Skip to content

Instantly share code, notes, and snippets.

@KPChakravarthy
Last active July 4, 2020 03:33
Show Gist options
  • Save KPChakravarthy/0fedec1030f07fa145667f7b5c926bfb to your computer and use it in GitHub Desktop.
Save KPChakravarthy/0fedec1030f07fa145667f7b5c926bfb to your computer and use it in GitHub Desktop.
function sendFile() {
var x = new XMLHttpRequest();
x.open("GET", blobURL);
x.responseType = "blob";
x.onload = function () {
var url = URL.createObjectURL(x.response);
localStorage.setItem("fileToProcess", url);
window.onload = function () {
document.getElementById("fetchImageFromBlob").click();
};
};
x.send();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment