admin管理员组文章数量:1344646
I wanted to convert an image to blob url I currently can do it if user uploads the image through an input tag but what I want is what if I had a src url for the image how can I get that image then convert that image to blob. Thanks in advance.
EDIT: Someone suggested a similar question, I tried to apply a similar method but I am not getting a blob url back I have updated my code to show the following.
Suggested SO URL: convert image into blob using javascript
//this works for when image is uploaded through an input tag
const image_input = document.querySelector("#image_input");
image_input.addEventListener("change", function() {
const reader = new FileReader();
reader.addEventListener("load", () => {
const uploaded_image = reader.result;
console.log(uploaded_image)
});
reader.readAsDataURL(this.files[0]);
});
//Suggested Method
function loadXHR(url) {
return new Promise(function(resolve, reject) {
try {
var xhr = new XMLHttpRequest();
xhr.open("GET", url);
xhr.responseType = "blob";
xhr.onerror = function() {
reject("Network error.")
};
xhr.onload = function() {
if (xhr.status === 200) {
resolve(xhr.response)
} else {
reject("Loading error:" + xhr.statusText)
}
};
xhr.send();
} catch (err) {
reject(err.message)
}
});
}
//I want to get the image throught a src link the convert that to blob url
//somthing like this
//convert src to blob
//console.log(blobUrl)
const src = '../img/myImage.jpg'
loadXHR(src).then(function(blob) {
//I currently only get back an object with size and and type not the blob url it self
console.log(blob)
});
<input type="file" title="" id="image_input">
I wanted to convert an image to blob url I currently can do it if user uploads the image through an input tag but what I want is what if I had a src url for the image how can I get that image then convert that image to blob. Thanks in advance.
EDIT: Someone suggested a similar question, I tried to apply a similar method but I am not getting a blob url back I have updated my code to show the following.
Suggested SO URL: convert image into blob using javascript
//this works for when image is uploaded through an input tag
const image_input = document.querySelector("#image_input");
image_input.addEventListener("change", function() {
const reader = new FileReader();
reader.addEventListener("load", () => {
const uploaded_image = reader.result;
console.log(uploaded_image)
});
reader.readAsDataURL(this.files[0]);
});
//Suggested Method
function loadXHR(url) {
return new Promise(function(resolve, reject) {
try {
var xhr = new XMLHttpRequest();
xhr.open("GET", url);
xhr.responseType = "blob";
xhr.onerror = function() {
reject("Network error.")
};
xhr.onload = function() {
if (xhr.status === 200) {
resolve(xhr.response)
} else {
reject("Loading error:" + xhr.statusText)
}
};
xhr.send();
} catch (err) {
reject(err.message)
}
});
}
//I want to get the image throught a src link the convert that to blob url
//somthing like this
//convert src to blob
//console.log(blobUrl)
const src = '../img/myImage.jpg'
loadXHR(src).then(function(blob) {
//I currently only get back an object with size and and type not the blob url it self
console.log(blob)
});
<input type="file" title="" id="image_input">
Share
Improve this question
edited Aug 25, 2022 at 15:42
seriously
asked Aug 25, 2022 at 14:57
seriouslyseriously
1,3771 gold badge9 silver badges34 bronze badges
0
2 Answers
Reset to default 5If you just want an URL for a blob, and don't need the actual Base64-encoded string, URL.createObjectURL()
may be simpler than the FileReader
-magic.
Here this approach is used for providing src
for multiple images, while ensuring that only a single HTTP request will be made (even if the browser cache is disabled).
fetch("https://i.imgur./gDJ1JhL.jpeg")
.then(response => response.blob())
.then(blob => {
const url = URL.createObjectURL(blob);
for (const img of document.querySelectorAll("img"))
img.src = url;
});
<img style="width:30%"><img style="width:20%"><img style="width:10%">
(Image credit: dimitriartist, linked from Imgur, https://i.sstatic/sEv3O.jpg)
EDIT:
As @REJH suggests, the really pedant way is to free the object URL after use (automatic clean up will happen only when the document gets unloaded). What plicates things here is that this means waiting for all 3 image tags to plete "loading", and only then can the URL be gone safely. One option is to simply count the loaded events, another one is to promisify them, and use Promise.allSettled()
to wait for all of them succeeding/failing. I try this latter approach here:
fetch("https://i.imgur./gDJ1JhL.jpeg")
.then(response => response.blob())
.then(blob => {
const url = URL.createObjectURL(blob);
const imgs = Array.from(document.querySelectorAll("img"));
Promise.allSettled(imgs.map(img => {
img.src = url;
return new Promise((resolve, reject) => {
img.onload = () => {
console.log("One loaded");
resolve();
};
img.onerror = () => {
console.log("One failed");
reject();
};
});
})).then(e => {
console.log("All settled");
URL.revokeObjectURL(url);
});
});
<img style="width:30%"><img style="width:20%"><img style="width:10%">
Try this way.
const src = '../img/myImage.jpg'
loadXHR(src).then(function(blob) {
// Here blob is object, you need to convert it to base64 by using FileReader
const reader = new FileReader();
reader.addEventListener("load", () => {
const uploaded_image = reader.result;
console.log(uploaded_image);
});
reader.readAsDataURL(blob);
});
本文标签: javascripthow to convert image src url to blobStack Overflow
版权声明:本文标题:javascript - how to convert image src url to blob - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743698148a2523856.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论