私は現在、フォトライブラリから画像を取得するために以下の関数を使用しています
function getImage() {
// Retrieve image file location from specified source
navigator.camera.getPicture(updatePhoto, function(message) {
alert('get picture failed');
},{
quality: 50,
destinationType: navigator.camera.DestinationType.FILE_URI,
sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY
}
);
}
function updatePhoto(imageURI) {
//console.log(imageURI);
}
しかし今、画像の URL ではなく base64 文字列が必要です!
これを行う方法 ?