有没有任何包可以直接从react native中的url中裁剪图像



有没有任何可能的方法可以直接从react native中的url中裁剪图像?

尝试使用此包react原生图像裁剪选择器,但没有成功。。。

ImagePicker.openCropper({
src: 'https://picsum.photos/200/300',
width: 300,
height: 400,
includeBase64: true,
}).then((image) =>  /*  handle */)

尝试这个

const Crop_image = () => {
ImagePicker.openCropper({
path: uri.uri,
width: dimensions.width - 30,
height: dimensions.height / 3.5,
maxFiles: 1,
showCropFrame: false,
}).then(image => {
console.log(image.path);
setCropImg(image.path);
});
};

最新更新