behdad / fontmake

Compile fonts from sources (UFO, Glyphs) to binary (OpenType, TrueType).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub Actions Build Status Python Versions PyPI Version

fontmake

This library provides a wrapper for several other Python libraries which together compile fonts from various sources (.glyphs, .ufo) into binaries (.otf, .ttf).

Installation

Fontmake requires Python 3.6 or later.

Releases are available on PyPI and can be installed with pip.

pip install fontmake

Use the -U, --upgrade option to update fontmake and its dependencies to the newest available release:

pip install -U fontmake

Alternatively, you can download the git repository and install from source:

git clone https://github.com/googlefonts/fontmake
cd fontmake
pip install .

Developers who want to quickly test changes to the source code without re-installing, can use the "--editable" option when installing from a local source checkout:

pip install -e .

It is recommended to install fontmake inside a "virtual environment" to prevent conflicts between its dependencies and other modules installed globally.

You could also use the pipx tool to automate the installation/upgrade of python apps like fontmake in isolated environments.

Usage

After installation, you can use the fontmake console script. For example:

fontmake -g MyFont.glyphs  # outputs binary font files for masters only

Use fontmake -h to see options for specifying different types of input and output.

You can also use fontmake as a module to run intermediate steps in the build process, via methods of the fontmake.font_project.FontProject class.

About

Compile fonts from sources (UFO, Glyphs) to binary (OpenType, TrueType).

License:Apache License 2.0


Languages

Language:Python 98.9%Language:Shell 1.1%