科尔多瓦相机仅锁定在肖像上

时间:2016-07-21 11:55:52

标签: ios cordova ipad ionic-framework

我正在开发使用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
});

希望有人可以帮我解决这个问题。提前致谢

0 个答案:

没有答案