0.0.3 • Published 4 years ago

node-text2img v0.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

node-text2img

npm

npm install node-text2img
const t2i = require("./index");
const text = "Your Text\nHere!";
// configs can be omitted
const configs = {
    font: {
        font: "24px 宋体",
        fontHeight: 24,
        fontMaxWidth: 24,
        fillStyle: "black",
    },
    size: {
        maxCharsPerLine: 50,
        paddingX: 24,
        paddingY: 24,
    }
};
const base64Url = new t2i(text, configs).text2img(); // base64 url like "data:image/png;base64,#picdata#"
console.log(base64Url);
0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago