我怎样才能得到裁剪图像上传? |反应

How can I get cropped Image to upload ? | React

我希望用户为他们的个人资料图片上传和裁剪图片。 我使用 react-cropper react-cropper 并正在裁剪图像 URL。但是我不确定如何获取裁剪后的图像文件以便上传到服务器。

这里是link

https://codesandbox.io/s/crazy-wu-8z13i?file=/src/Demo.tsx:62-75

React-cropper 为您提供图像的 Base64 URL。

我们可以将此 URL 转换为文件对象,正如我在 Codesandbox.

中演示的那样

正如该 Codesandbox 的评论中所解释的那样,一旦您有了文件,我们就可以将文件上传到 S3 或您喜欢的任何其他地方。

If you want to send this file to a Node.js server, you can use Multer with your Express server to create an /upload route. Here's a guide on that.

希望这对您有所帮助。 :)