Код: Выделить всё
import { saveAs } from 'file-saver'
//upload
const [file, setFile] = useState();
function photoChanged(e) {
setFile(URL.createObjectURL(e.target.files[0]));
}
// photo download
const downloadImage = () => {
saveAs(`${file}`, 'image.jpg') // img url
}
return (
Add Image:
Download!
[img]{file} style={getImageStyle()}/[/img]
//from here I added filters as props
)
Подробнее здесь: https://stackoverflow.com/questions/733 ... s-in-react
Мобильная версия