Node JS Convert Image File to Base64 String Example

Telegram Join Our Telegram Channel

In this example, you will learn node js convert image file to base64. you will learn node js convert base64 string to image. you can see node js image to base64 string convert. step by step explain how to convert image to base64 in node js.

I will give you simple solution with full example of how to convert image to base64 string in node js. let’s see solution with example:

Solution:

var base64str = base64_encode('demo.png');  function base64_encode(file) {    return "data:image/gif;base64,"+fs.readFileSync(file, 'base64');}

Example:

const express = require('express');
const fs = require('fs');
const app = express();
  
var base64str = base64_encode('demo.png');
console.log(base64str);
  
function base64_encode(file) {
    return "data:image/gif;base64,"+fs.readFileSync(file, 'base64');
}
  
app.listen(3000);
Telegram Join Our Telegram Channel

Leave a Reply

Your email address will not be published. Required fields are marked *

Telegram Join Our Telegram Channel

Most Viewed

Monthly Best Selling Templates

Check the latest products added to the marketplace. Fresh designs with the finest HTML5 CSS3 coding.