我正在尝试在cordova应用程序中为iOS添加相机。我已经添加了最新版本4.0.3的插件cordova-plugin-camera,它工作正常,但allowEdit属性裁剪照片只适用于照片库而不适用于相机。
这是我的代码:
navigator.camera.getPicture(
onPhotoDataSuccess, onFail,
{
quality: 100,
allowEdit:true,
destinationType: destinationType.DATA_URL,
correctOrientation: true,
sourceType: navigator.camera.PictureSourceType.CAMERA
});
navigator.camera.cleanup(onSuccess, onFail);
如果有人能帮助我,我真的很感激。