我正在使用 Sencha Touch 和 Phonegap 来显示用相机拍摄的照片。通过cordova2.7.0在iphone上拍照时,以正确的方向绘制图片。但是使用三星s3,图片会倾斜-90°(仅适用于纵向图像)。
navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality: 25,
destinationType: destinationType.FILE_URI,
targetWidth: 120,
targeHeight: 120,
correctOrientation: true,
sourceType: source });
我使用上面的代码拍照。从相机拍摄的肖像图像以正确的方向显示,问题仅发生在从画廊拍摄的肖像图像中。有什么办法可以解决这个问题吗?