ttf2svg

1.2.0 • Public • Published

ttf2svg

Font convertor, TTF to SVG, for node.js

Usage

Install:

npm install -g ttf2svg

Usage example:

ttf2svg fontello.ttf fontello.svg

Or:

var ttf2svg = require('ttf2svg')
  , fs = require('fs')
;
 
fs.readFile('./fontello.ttf', function (err, buffer) {
    if (!!err) throw err;
 
    var svgContent = ttf2svg(buffer);
    fs.writeFileSync('./fontello.svg', svgContent);
 
});
 

Stats

NPM NPM

Reference

gulp-ttf2svg

Package Sidebar

Install

npm i ttf2svg

Weekly Downloads

595

Version

1.2.0

License

none

Last publish

Collaborators

  • qdsang