我目前正在使用以下功能从照片库获取图像

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);

}


但是现在我想要base64字符串而不是图像URL!

这该怎么做 ?

最佳答案

从以下代码更改

destinationType: navigator.camera.DestinationType.FILE_URI,




destinationType: Camera.DestinationType.DATA_URL


请点击此链接phonegap

关于ios - 从照片库中选择图像时如何在Phonegap中获取Base 64字符串而不是imageURI,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19006012/

10-10 17:55