📌  相关文章
📜  在没有画布的情况下将图像 url 转换为 base64 javascript - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:33.606000             🧑  作者: Mango

代码示例1
// There are no possible ways of doing this on client side but if you are
// using Node.js try:
let a = Buffer.from('JavaScript').toString('base64');
console.log(a);

let b = Buffer.from(a, 'base64').toString();
console.log(b);