BDF Font drawer for Canvas API
npm install bdf-canvasbdf-canvas
==========
This library is for parsing BDF Font and drawint it to canvas.
``
const BDFFont = require("bdf-canvas");
const ctx = canvas.getContext("2d");
const font = new BDFFont(bdfbody);
font.drawText(ctx, "foobar", 10, 10);
``