Answers for "nodejs convert base64 to image"

0

convert base64 to image nodejs

var base64Data = req.rawBody.replace(/^data:image/png;base64,/, "");

require("fs").writeFile("out.png", base64Data, 'base64', function(err) {
  console.log(err);
});
Posted by: Guest on July-12-2021
0

node.js - How do I convert an image to a base64-encoded data URL

var fs = require('fs');

var imageAsBase64 = fs.readFileSync('./your-image.png', 'base64');
Posted by: Guest on May-16-2021
-1

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
-1

nodejs read image as base64

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

Code answers related to "nodejs convert base64 to image"

Code answers related to "Javascript"

Browse Popular Code Answers by Language