@canvas-fonts/arial-narrow-bold

1.0.4 • Public • Published

@canvas-fonts/arial-narrow-bold

Arial Narrow Bold package for canvas

Usage

const { registerFont, createCanvas } = require('canvas');
registerFont(require("@canvas-fonts/arial-narrow-bold"), { family: "Arial Narrow Bold" });
const canvas = createCanvas(400, 48);
const ctx = canvas.getContext('2d');
ctx.font = `24px "Arial Narrow Bold"`;
ctx.fillText("Arial Narrow Bold", 5, 30);
const png = canvas.toBuffer();

Will create this image:

preview

Creating your own Fonts

This font is part of the canvas-fonts collection. To use your own fonts, simply:

  1. Create a new npm package
  2. Add your font file to the same directory as the package.json created in step 1.
  3. Add the following index.js file in that same directory:
// Replace "MyAwesomeFont.ttf" with the filename of your font!
module.exports = require('path').join(__dirname, "MyAwesomeFont.ttf")
  1. Publish to npm!

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @canvas-fonts/arial-narrow-bold

      Weekly Downloads

      18

      Version

      1.0.4

      License

      none

      Unpacked Size

      186 kB

      Total Files

      4

      Last publish

      Collaborators

      • jacoblee93
      • retrohack3r