Closed
Description
Bug Report
Plugin(s)
"@capacitor/camera": "^4.1.5"
Capacitor Version
💊 Capacitor Doctor 💊
Latest Dependencies:
@capacitor/cli: 5.5.1
@capacitor/core: 5.5.1
@capacitor/android: 5.5.1
@capacitor/ios: 5.5.1
Installed Dependencies:
@capacitor/cli: 4.8.1
@capacitor/core: 4.6.1
@capacitor/ios: 4.6.3
@capacitor/android: 4.6.2
[success] iOS looking great! 👌
[success] Android looking great! 👌
Platform(s)
IOS
Current Behavior
After taking a picture using camera editing option is not available
Expected Behavior
The user should see the options to edit the image
Code Reproduction
const options: ImageOptions = {
allowEditing: true,
resultType: CameraResultType.Uri,
source: CameraSource.Camera,
quality: 90
};
Camera.getPhoto(options).then(
(imageData) => {
// show image
},
(err) => {
if (err != this.IMAGE_NOT_SELECTED) {
this.emittError(err);
}
}
);
Other Technical Details
Additional Context
Any thoughts, about what is going wrong?
Thanks
Agarshan