untitled notebook

node v10.24.1
version: 2.0.0
endpointsharetweet
const axios = require("axios") const response = await axios.get("https://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Los_Colorines_4.jpg/320px-Los_Colorines_4.jpg", { responseType: "arraybuffer" }); const base64 = Buffer.from(response.data, 'base64').toString('base64'); const base64ImageUrl = `data:image/gif;base64,${base64}` console.log(base64ImageUrl)
Loading…

no comments

    sign in to comment