@canvas-fonts/americantypewriter
AmericanTypewriter package for canvas
Usage
const { registerFont, createCanvas } = require('canvas');
registerFont(require("@canvas-fonts/americantypewriter"), { family: "AmericanTypewriter" });
const canvas = createCanvas(400, 48);
const ctx = canvas.getContext('2d');
ctx.font = `24px "AmericanTypewriter"`;
ctx.fillText("AmericanTypewriter", 5, 30);
const png = canvas.toBuffer();
Will create this image:
![preview](https://github.com/retrohacker/canvas-fonts/raw/master/previews/americanTypewriter.png)
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")
- Publish to npm!