6

我只能在他们的文档中找到有关返回设备方向的加速度计的信息。无论如何,phonegap 可以返回拍照时设备的持有方式吗?要使用相机,我这样做:

function capturePhoto() {
    // Take picture using device camera and retrieve image as base64-encoded string
    navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 50,
        destinationType: destinationType.DATA_URL });
}

当它返回成功时,它会执行此操作。

 function onPhotoDataSuccess(imageData) {
        var baseImg = imageData;
        $('#uploadPreUpImgSwapHtml').html('<img src="data:image/jpeg;base64,'+ baseImg +'" style="max-width:100%; width:auto; max-height:300px; height:auto;" / >');
        $('#uploadPreBaseDataSwapHtml').html('<input type="hidden" id="chosenPictureData" value="'+ baseImg +'" />');
        $('#uploadPictureBtnHideHtml').fadeIn();

    }

是否有回调成功返回拍摄照片时设备的持有方式,以便我可以将其发送到我的上传文件并正确旋转图片?

4

1 回答 1

23

为了让您的生活更轻松,您可以致电:

navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 50,
    destinationType: destinationType.FILE_URI, 
    correctOrientation: true });

然后你会得到一个正确旋转的文件。

于 2012-10-03T14:30:55.357 回答