@canvas-fonts/chalkduster
Chalkduster package for canvas
Usage
const { registerFont, createCanvas } = require('canvas');
registerFont(require("@canvas-fonts/chalkduster"), { family: "Chalkduster" });
const canvas = createCanvas(400, 48);
const ctx = canvas.getContext('2d');
ctx.font = `24px "Chalkduster"`;
ctx.fillText("Chalkduster", 5, 30);
const png = canvas.toBuffer();
Will create this image:

Creating your own Fonts
This font is part of the canvas-fonts collection. To use your own fonts, simply:
- Create a new npm package
- Add your font file to the same directory as the
package.json created in step 1.
- Add the following
index.js file in that same directory:
module.exports = require('path').join(__dirname, "MyAwesomeFont.ttf")