使用react-native-image-picker时是否有尺寸限制?

时间:2019-09-03 04:16:48

标签: react-native react-native-android react-native-image-picker

我想对使用react-native-image-picker上传的图像是否有尺寸限制。因为当我尝试上传大小为33MB的jpg图像时,该应用程序崩溃,并显示“ appName已停止工作”。但是同时我可以上传扩展大小为1MB +的png,jpeg,jpg等扩展名图片,效果很好。

  ImagePicker.launchImageLibrary(options, response => {
    console.log("oooooooooo", response);
    if (response.didCancel) {
      this.refs.toast.show(Strings.string_image_cancelled);
    } else (response.error) {
      console.log("ImagePicker Error: ", response.error);
    }

看,这里尝试上传大文件时没有任何反应。但这在iOS上很好用。

1 个答案:

答案 0 :(得分:2)

因此,基本上,在上载较大图像时,库正在获取大量数据以转换为base64。因此,该应用似乎崩溃了。设置nodata: true时。该库停止了将数据转换为base 64的操作,并且工作正常。