The image I retrieve in the success callback has proper exif data if I set the
options to:
```
let options = {
sourceType: Camera.PictureSourceType.CAMERA,
destinationType: Camera.DestinationType.FILE_URI
};
```
Once I use `correctOrientation` (or quality, or targetHeight or targetWidth) in
the options, the exif data is lost:
```
let options = {
correctOrientation: true,
sourceType: Camera.PictureSourceType.CAMERA,
destinationType: Camera.DestinationType.FILE_URI
};
```
[ Full content available at:
https://github.com/apache/cordova-plugin-camera/issues/329 ]
This message was relayed via gitbox.apache.org for [email protected]