bdf-canvas
v1.0.1
Published
BDF Font drawer for Canvas API
Downloads
23
Readme
bdf-canvas
This library is for parsing BDF Font and drawint it to canvas.
Usage
const BDFFont = require("bdf-canvas");
const ctx = canvas.getContext("2d");
const font = new BDFFont(bdfbody);
font.drawText(ctx, "foobar", 10, 10);