0.1.3 • Published 8 years ago

svg-font-to-json v0.1.3

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

svg-font-to-js

Parses an SVG font to JS.

Returns an array of glyph objects in the following format:

[
  {
    "name": "dotlessi",
    "width": 330,
    "path": "M 110 0 v 540 h 110 v -540 h -110 z"
  }
]

Options

Options are passed as an object.

svgFontToJson('font.svg', {prettify: true, benchmark: true});

Prettify

Outputs cleaner SVG paths. Without prettify:

'M110 613v115h124v-115h-124z'

With prettify:

'M 110 613 v 115 h 124 v -115 h -124 z'

Benchmark

Provides a report on the parse performance.

svg-font-to-js took 0s, 0.57ms to parse test-font.svg (165 glyphs).
0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago