“nodejs reade image как base64” Ответ

Преобразовать BASE64 в Image Nodejs

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

require("fs").writeFile("out.png", base64Data, 'base64', function(err) {
  console.log(err);
});
Undefined

Node.js - Как мне преобразовать изображение в URL -адрес данных, кодируемый BASE64

var fs = require('fs');

var imageAsBase64 = fs.readFileSync('./your-image.png', 'base64');
CL

nodejs reade image как base64

const fs = require('fs');
const contents = fs.readFileSync('/path/to/file.jpg', {encoding: 'base64'});
Clumsy Cicada

nodejs reade image как base64

const fs = require('fs').promises;
const contents = await fs.readFile('/path/to/file.jpg', {encoding: 'base64'});
Clumsy Cicada

Ответы похожие на “nodejs reade image как base64”

Вопросы похожие на “nodejs reade image как base64”

Больше похожих ответов на “nodejs reade image как base64” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования