0.0.2 • Published 7 years ago

otfforge v0.0.2

Weekly downloads
2
License
MIT
Repository
bitbucket
Last release
7 years ago

otfforge

Convert OpenType font to TrueType format with FontForge.

Requirements

Installation

Install the module as CLI tool

  $ [sudo] npm install otfforge

Usage

const { src, dest } = require('gulp');
const otfforge = require('otfforge');

function convertFont(cb) {
    src("**/*.otf")
        .pipe(otfforge())
        .pipe(dest("fonts"));

    cb();
}

License

MIT

0.0.2

7 years ago

0.0.1

7 years ago