在React Native中上传个人资料图片之前如何裁剪图像?

时间:2019-06-12 04:30:31

标签: react-native cropimage.net

在将其上传到后端之前,我需要裁剪所选图像或从相机拍摄的照片以本机反应。

2 个答案:

答案 0 :(得分:0)

您可以先安装Sharp,然后:

sharp(originalImage).extract({ width: 1920, height: 1080, left: 60, top: 40 }).toFile("outputImage")
    .then(function(new_file_info) {
        console.log("Image cropped and saved");
    })
    .catch(function(err) {
        console.log("An error occured");
    });

答案 1 :(得分:0)

react-native-image-crop-picker是您应该使用的库

iOS / Android图像选择器,支持相机,视频,可配置的压缩,多幅图像和裁剪