gpt4 book ai didi

javascript - 在没有 FileReader 的 NodeJS 中 Blob 到 Base64

转载 作者:行者123 更新时间:2023-12-05 00:30:17 31 4
gpt4 key购买 nike

我目前有一个类型为“image/jpeg”的 blob,需要将其转换为 base64 字符串。我所有的代码都在一个使用 Nodejs 的独立 javascript 文件中,并且没有与任何 html 文件连接。我研究过的将 blob 转换为 base64 的每种方法都涉及使用 FileReader 类,该类要求 javascript 在 html 中,所以这是不可能的。我发现的唯一其他解决方法是使用这行代码将 blob 转换为缓冲区,然后转换为 base64。

    base64 = new Buffer( blob, 'binary').toString('base64');


但这只会返回错误:第一个参数必须是字符串、Buffer、ArrayBuffer、Array 或类似数组的对象。

我很困惑......有什么建议吗?

最佳答案

如果您在 NodeJS 中使用 node-fetch 从 URL 读取,您不想获取 blob,而是获取缓冲区。然后,您可以轻松地转换为 base64。

const b64 = await fetch(url)
.then((response) => response.buffer())
.then((buffer) => {
const b64 = buffer.toString('base64');
return b64;
})
.catch(console.error);

关于javascript - 在没有 FileReader 的 NodeJS 中 Blob 到 Base64,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54099802/

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