Answers for "fs readfile base64 image"

-2

nodejs read image as base64

const fs = require('fs');
const contents = fs.readFileSync('/path/to/file.jpg', {encoding: 'base64'});
Posted by: Guest on May-06-2021
-2

nodejs fs writefile base64url

const fileContents = new Buffer(attachmentResponse.data.data, 'base64')
fs.writeFile(part.filename, fileContents, (err) => {
  if (err) return console.error(err)
  console.log('file saved to ', part.filename)
})
Posted by: Guest on May-26-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language