Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 711 Bytes

README.md

File metadata and controls

50 lines (31 loc) · 711 Bytes

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