I use a React component that converts an image to a blob url. The url looks like this: "blob:http://localhost:3000/78db8897-645d-4323-8865-8deaa9716a96". Appending it to a works, it shows the image. But I want to be able to upload this string to the server as the file. I have a function I found here on SO but it doesnt work.
export function blobToFile(blobUrl, fileName) {
const blob = new Blob([blobUrl], {
lastModifiedDate: Date.now(),
type: "image/png",
});
const file = new File([blob], fileName + ".png", {
type: "image/png",
lastModified: Date.now(),
});
return file;
}
question from:
https://stackoverflow.com/questions/65645649/how-do-i-convert-a-blob-url-to-file-image-file 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…