Answer the question
In order to leave comments, you need to log in
How to save images from BLOB?
Hello. The site gives all pictures as BLOB objects. How can I save them to disk in a normal format?
Answer the question
In order to leave comments, you need to log in
function download(blob, name, url) {
const anchor = document.createElement("a");
anchor.setAttribute("download", name || "");
const blobUrl = URL.createObjectURL(blob);
anchor.href = blobUrl + (url ? ("#" + url) : "");
anchor.click();
setTimeout(() => URL.revokeObjectURL(blobUrl), 5000);
}
blob:https://imgur.com/11fb6df9-e45b-4acf-b3eb-60d5d4656747#https://i.imgur.com/X92aA5Y.jpeg
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question