0.1.4 • Published 6 years ago

svgfont2glyphs v0.1.4

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

svgfont2js

Parse SVG font glyphs into JSON objects with normalized coordinates. The resulting path data can be used directly in SVG documents or HTML5 canvas API to draw glyphs.

Installation

npm install svgfont2js

Usage

var fs = require("fs");
var svgfont2js = require("svgfont2js");

console.log(svgfont2js(fs.readFileSync("font.svg", "utf8")));

Build

Transpile the source code (written in ES6) to ES5 for distribution.

npm run build