1.0.4 • Published 5 years ago

canvas-fill-text-on-arc v1.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

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
);