我想知道如何使用React Native将图像从5 mb压缩到刚好超过200kb。
我还没有尝试过任何形式,因为我没有找到任何类型的东西。
答案 0 :(得分:0)
您可以使用库react-native-image-crop-picker
并将其组合到redux
例如:
ImagePicker.openPicker({
width: 300, // set your values
height: 400,
cropping: true //if you want enable to crop or not
}).then(image => {
console.log(image);
});