Здравствуйте, есть только путь к картинке, надо из этого пути сделать файл.
Как я пытаюсь это сделать:
const path = './image-name.png';
const img = new Image();
const type = path.split('.')[path.split('.')length - 1];
img.src = path;
const filreReader = new FileReader();
const blob = new Blob([img], 'filename', {type: `image/${type}`});
fileReader.readAsDataURL(blob);
fileReader.onload = function() {
const file = new File([fileReader.result], 'filename', {type: `image/${type}`})
};
Но не получается, размер файла очень маленький получается