本帖最后由 赛龙周 于 2024-1-15 08:11 编辑
现在的AI工具已经很多了,随便找一个,让他生成一个js函数,比如:
function convertImageUrlToBase64(imageUrl, callback) {
const xhr = new XMLHttpRequest();
xhr.open('GET', imageUrl, true);
xhr.responseType = 'blob';
xhr.onload = function() {
if (xhr.status === 200) {
const reader = new FileReader();
reader.onloadend = function() {
callback(reader.result);
};
reader.readAsDataURL(xhr.response);
}
};
xhr.send();
}
const imageUrl = 'https://example.com/image.jpg';
convertImageUrlToBase64(imageUrl, function(base64Image) {
console.log(base64Image); // 输出base64编码的图片
});
|