riccardoscalco / canvas-fill-text-on-arc

Utility function for drawing text on an arc using the canvas API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

canvas-fill-text-on-arc

Utility function for drawing text on an arc using the canvas API.

Install

npm install canvas-fill-text-on-arc

Usage

import fillTextOnArc from 'canvas-fill-text-on-arc';

// Set font
context.font = 'normal 14px serif';

// Draw text
fillTextOnArc(
  context,
  'some text',
  cx,
  cy,
  radius,
  spacing
);

About

Utility function for drawing text on an arc using the canvas API.

License:MIT License


Languages

Language:JavaScript 100.0%