Answers for "convert image url to base64 javascript without canvas"

0

convert image url to base64 javascript without canvas

// 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);
Posted by: Guest on August-17-2021

Code answers related to "convert image url to base64 javascript without canvas"

Code answers related to "Javascript"

Browse Popular Code Answers by Language