I use URL.createObjectURL to store an image File and then get back the image File from the object URL :
console.log(droppedImage);
const objectUrl = URL.createObjectURL(droppedImage);
fetch(objectUrl).then(res => res.blob()).then(console.log);
The result on Firefox is what I want :
But on chrome with the same image :
The file name disapeared and I don't know why...