弱弱的问下node-gm 写中文怎么写?
发布于 1年前 作者 lonso 574 次浏览
gm(300, 200, "#006511")
        .drawText(10, 50, text)
        .write( savePath + "/test.jpg", function (err) {
            if(err)
                console.log("err:--> "+err.message);
        });

text的编码格式?

1 回复

建议使用node-canvas,不需要编码转换,直接支持utf-8。

https://github.com/LearnBoost/node-canvas

回到顶部