gpt4 book ai didi

ios - 从照片库中选择图像时如何在 Phonegap 中获取 Base 64 字符串而不是 imageURI

转载 作者:行者123 更新时间:2023-11-28 20:13:43 25 4
gpt4 key购买 nike

我目前正在使用下面的函数从照片库中获取图像

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com