-
Notifications
You must be signed in to change notification settings - Fork 609
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
allowEditing is not working as intended in IOS #1874
Comments
From the documentation for the camera plugin, it says that it is only supported for CameraSource.Camera.
|
@kentora currently testing in an ipad 2 - ios version is 15.1 and for CameraSource.Camera its not working |
This issue needs more information before it can be addressed. Please see the Contributing Guide for how to create a Sample App. Thanks! |
For iOS, it seems that this plugin only provides the capability to crop images taken with the camera and does not offer other forms of image editing like Markup. Hence closing this issue. |
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of the plugin, please create a new issue and ensure the template is fully filled out. |
Bug Report
Plugin(s)
"@capacitor/camera": "^4.1.5"
Capacitor Version
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
The text was updated successfully, but these errors were encountered: