Cordova / Ionic 2:强制相机宽高比Android / iOS

时间:2016-12-01 15:19:02

标签: android cordova camera ionic2 cordova-plugins

问:有没有办法通过Cordova插件强制相机的宽高比?

详细信息:
我正在使用Cordova相机插件拍照。

我试图强制分辨率为1366 x 768。

问题是width and height提供的参数似乎没有任何影响,除非首先使用设备上相机应用程序中的设置设置相机比率。

即。如果设备设置为4:3照片,那么无论我在选项中做什么,照片总是4:3。

这是我目前正在使用的代码:

  Camera.getPicture({
      sourceType: 1,
      destinationType: 0,
      encodingType: 0,
      saveToPhotoAlbum: false,
      allowEdit: false,
      quality: 75,
      correctOrientation: true,
      targetWidth: 1366,
      targetHeight: 768
    }).then((imageBase64: string) => {
        resolve('data:image/jpeg;base64,' + imageBase64);
    }, (error) => {
      resolve(null);
  });  

0 个答案:

没有答案