使用PhoneGap(Cordova),我试图从照片库中获取照片的base64图像数据。
我可以这样做..当从相机拍摄照片时,使用 Cordova 中的以下代码片段。
navigator.camera.getPicture(onSuccess, onFail, { quality: 50,
destinationType: Camera.DestinationType.DATA_URL
});
function onSuccess(imageData) {
var image = document.getElementById('myImage');
image.src = "data:image/jpeg;base64," + imageData;
}
function onFail(message) {
alert('Failed because: ' + message);
}
但是,当从库中选择照片时,我应该怎么做才能获取 base64 图像数据?