Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
236 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...