ivpusic / react-native-image-crop-picker

iOS/Android image picker with support for camera, video, configurable compression, multiple images and cropping
MIT License
6.14k stars 1.56k forks source link

compression for multiple images #979

Open christ012 opened 5 years ago

christ012 commented 5 years ago

Version

Tell us which versions you are using:

Platform

Tell us to which platform this issue is related

Expected behaviour

compression in multiple image picker

ImagePicker.openPicker({ multiple: true, compressImageMaxWidth: 1024, compressImageMaxHeight: 1024, compressImageQuality: 1 }).then(images => { this.setState({ image: null, imagetype:null, images: images.map(i => { console.log('received image', i); return {uri: i.path, width: i.width, height: i.height, mime: i.mime}; }) });

Actual behaviour

its not working

Steps to reproduce

1.

2.

3.

Attachments

// stacktrace or any other useful debug info

Love react-native-image-crop-picker? Please consider supporting our collective: 👉 https://opencollective.com/react-native-image-crop-picker/donate

koalaa commented 5 years ago

same problem.

s5963028 commented 5 years ago

some updates?