@anzerr/bdf.util
v1.0.15
Published
Util to parse BDF font format files
Readme
Intro
Util to parse BDF font format files ready to be used to draw.
Example of a font being drawn using its bitmap an example can be found in test
Install
npm install --save git+https://[email protected]/anzerr/bdf.util.gitExample
const {parse, bitmap} = require('bdf.util');
parse('./test/cherry-10-b.bdf').then((res) => {
console.log(res);
});
bitmap('./test/cherry-10-b.bdf').then((res) => {
console.log(res);
});