使用 react-native-image-picker 有大小限制吗?
Is there any size restriction in using react-native-image-picker?
我想知道我需要使用 react-native-image-picker 上传的图片是否有任何大小限制。因为当我尝试上传大小为 33MB 的 jpg 图片时,应用程序崩溃并显示 "appName has stopped working"。但与此同时,我能够上传 png、jpeg、jpg 等大小为 1MB+ 的扩展图像,它工作正常。
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.
的情况下工作正常
所以基本上,在上传大图像时,库会获取大量数据以转换为 base64。因此,该应用程序似乎崩溃了。关于设置nodata: true
。该库停止将数据转换为 base 64,并且工作正常。
我想知道我需要使用 react-native-image-picker 上传的图片是否有任何大小限制。因为当我尝试上传大小为 33MB 的 jpg 图片时,应用程序崩溃并显示 "appName has stopped working"。但与此同时,我能够上传 png、jpeg、jpg 等大小为 1MB+ 的扩展图像,它工作正常。
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.
的情况下工作正常所以基本上,在上传大图像时,库会获取大量数据以转换为 base64。因此,该应用程序似乎崩溃了。关于设置nodata: true
。该库停止将数据转换为 base 64,并且工作正常。