如何压缩图像较小?

时间:2019-04-05 18:56:44

标签: android

我想知道如何使用React Native将图像从5 mb压缩到刚好超过200kb。

我还没有尝试过任何形式,因为我没有找到任何类型的东西。

1 个答案:

答案 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);
});