我正在开发使用Cordova相机的ipad混合应用程序(离子框架),我设法启动相机并返回图片,但问题是无论iPad如何,相机始终锁定纵向模式正在旋转,下面是我的代码
name
我还在Xcode项目下设置了“Landscape Left”和“Landscape Right”
我还在config.xml下为离子项目设置了肖像,下面是代码
navigator.camera.getPicture(function(data){
}, function(error){
}, {
quality : 75,
destinationType : Camera.DestinationType.DATA_URL,
sourceType : Camera.PictureSourceType.CAMERA,
allowEdit : true,
encodingType: Camera.EncodingType.JPEG,
targetWidth: 512,
targetHeight: 384,
popoverOptions: CameraPopoverOptions,
saveToPhotoAlbum: false,
correctOrientation: true
});
希望有人可以帮我解决这个问题。提前致谢