I\'m trying to read an image from client side encoded in base64. How to read with nodejs?
My code:
// add to buffer base64 image var encondedImage =
var fs = require('fs'); function base64Encode(file) { var body = fs.readFileSync(file); return body.toString('base64'); } var base64String = base64Encode('test.jpg'); console.log(base64String);