当前位置 : 主页 > 手机开发 > cordova >

Cordova 2.8.1:在ios上使用photolibarary源的camera.getPicture

来源:互联网 收集:自由互联 发布时间:2021-06-10
使用cordova 2.8.1我正在尝试用photolibrary做一个camera.getPicture.它似乎适用于 Android但不适用于iOS.下面是我如何调用getPicture代码.在带有iOS 6的iPhone 4s上,它允许我选择一个图像,但是一旦完成
使用cordova 2.8.1我正在尝试用photolibrary做一个camera.getPicture.它似乎适用于 Android但不适用于iOS.下面是我如何调用getPicture代码.在带有iOS 6的iPhone 4s上,它允许我选择一个图像,但是一旦完成,就会调用错误回调,参数为null

var options = {
          quality : 30,
          destinationType : Camera.DestinationType.FILE_URI,
          sourceType : Camera.PictureSourceType.PHOTOLIBRARY,
          correctOrientation: true,
          targetWidth: 800,
          targetHeight: 800
    };

navigator.camera.getPicture(this.captureSuccessPre, this.captureError, options);

有人告诉我在console.logs周围添加一个超时.在phonegaps文档中,它声明围绕警报这样做.下面是我的错误回调.记录[错误空]

captureError: function(error){
    setTimeout(function(){
        console.log("error " + error); //logs error null
    }, 100);
}

有人有主意吗.我一直在苦苦挣扎几天.如果它有助于任何这个代码完美的

sourceType : Camera.PictureSourceType.CAMERA,
我有完全一样的问题;似乎与DestinationType.FILE_URI有关.

试试这个:

var options = {
      quality : 30,
      destinationType: navigator.camera.DestinationType.NATIVE_URI,
      sourceType : Camera.PictureSourceType.PHOTOLIBRARY,
      correctOrientation: true,
      targetWidth: 800,
      targetHeight: 800
};
网友评论