1.0.2 • Published 2 years ago

canvas-economica v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Canvas-Economica

This program allows you to use the Economica Regular font in Canvas.

Usage

const { registerFont, createCanvas } = require('canvas');
registerFont(require("canvas-economica"), { family: "Economica Regular" });
const canvas = createCanvas(400, 48);
const ctx = canvas.getContext('2d');
ctx.font = `24px "Economica Regular"`;
ctx.fillText("Economica Regular", 5, 30);
const png = canvas.toBuffer();

(All credits to RetroHacker. https://github.com/retrohacker/)