Open AdrianZghibarta opened 6 years ago
react-native-image-crop-picker v0.21.1 react-native v0.56
iOS Android
When disabling cropping for ImagePicker.openPicker the preview image on Android / iOS must be the original image
ImagePicker.openPicker
When disabling cropping for ImagePicker.openPicker the preview image on Android / iOS is a low resolution image
Install the package
Open camera magePicker.openCamera({ cropping: false }).then(response => { ... }).catch(error => { ... });
magePicker.openCamera({ cropping: false }).then(response => { ... }).catch(error => { ... });
After the image is taken, the preview in a low resolution image.
maybe this will fix this? https://github.com/ivpusic/react-native-image-crop-picker/pull/825
Version
react-native-image-crop-picker v0.21.1 react-native v0.56
Platform
iOS Android
Expected behaviour
When disabling cropping for
ImagePicker.openPicker
the preview image on Android / iOS must be the original imageActual behaviour
When disabling cropping for
ImagePicker.openPicker
the preview image on Android / iOS is a low resolution imageSteps to reproduce
Install the package
Open camera
magePicker.openCamera({ cropping: false }).then(response => { ... }).catch(error => { ... });
After the image is taken, the preview in a low resolution image.