Created
March 6, 2017 09:36
-
-
Save muety/3ef97aad64ac733831e41ef5025133e0 to your computer and use it in GitHub Desktop.
Get image as base64 string using node-fetch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const fetch = require('node-fetch') | |
, base64stream = require('base64-stream'); | |
const URL = 'https://www.google.de/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'; | |
fetch(URL) | |
.then((res) => { | |
return new Promise((resolve, reject) => { | |
let chunks = []; | |
let myStream = res.body.pipe(base64stream.encode()); | |
myStream.on('data', (chunk) => { | |
chunks = chunks.concat(chunk); | |
}); | |
myStream.on('end', () => { | |
resolve(chunks.toString('base64')); | |
}); | |
}); | |
}) | |
.then(console.log); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@prionkor try like this