| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
User documentation and developer documentation are available at Read the Docs.
FontTools requires Python 3.10 or later. We try to follow the same schedule of minimum Python version support as NumPy (see NEP 29).
The package is listed in the Python Package Index (PyPI), so you can install it with pip:
pip install fonttoolsIf you would like to contribute to its development, you can clone the repository from GitHub, install the package in 'editable' mode and modify the source code in place. We recommend creating a virtual environment, using virtualenv or Python 3 venv module.
# download the source code to 'fonttools' folder
git clone https://github.com/fonttools/fonttools.git
cd fonttools
# create new virtual environment called e.g. 'fonttools-venv', or anything you like
python -m virtualenv fonttools-venv
# source the `activate` shell script to enter the environment (Unix-like); to exit, just type `deactivate`
. fonttools-venv/bin/activate
# to activate the virtual environment in Windows `cmd.exe`, do
fonttools-venv\Scripts\activate.bat
# install in 'editable' mode
pip install -e .The fontTools package currently has no (required) external dependencies besides the modules included in the Python Standard Library. However, a few extra dependencies are required by some of its modules, which are needed to unlock optional features. The fonttools PyPI distribution also supports so-called "extras", i.e. a set of keywords that describe a group of additional dependencies, which can be used when installing via pip, or when specifying a requirement. For example:
pip install fonttools[ufo,lxml,woff,unicode]This command will install fonttools, as well as the optional dependencies that are required to unlock the extra features named "ufo", etc.
Lib/fontTools/misc/etree.py
The module exports a ElementTree-like API for reading/writing XML files, and allows to use as the backend either the built-in xml.etree module or lxml. The latter is preferred whenever present, as it is generally faster and more secure.
Extra: lxml
Lib/fontTools/ttLib/woff2.py
Module to compress/decompress WOFF 2.0 web fonts; it requires:
Extra: woff
Lib/fontTools/ttLib/sfnt.py
To better compress WOFF 1.0 web fonts, the following module can be used instead of the built-in zlib library:
Extra: woff
Lib/fontTools/unicode.py
To display the Unicode character names when dumping the cmap table with ttx we use the unicodedata module in the Standard Library. The version included in there varies between different Python versions. To use the latest available data, you can install:
Extra: unicode
Lib/fontTools/varLib/interpolatable.py
Module for finding wrong contour/component order between different masters. It requires one of the following packages in order to solve the so-called "minimum weight perfect matching problem in bipartite graphs", or the Assignment problem:
This ensures both performance (via SciPy) and minimal footprint (via Munkres) are possible.
To plot the results to a PDF or HTML format, you also need to install:
Extra: interpolatable
Lib/fontTools/varLib/plot.py
Module for visualizing DesignSpaceDocument and resulting VariationModel.
Extra: plot
Lib/fontTools/misc/symfont.py
Advanced module for symbolic font statistics analysis; it requires:
Extra: symfont
Lib/fontTools/t1Lib.py
To get the file creator and type of Macintosh PostScript Type 1 fonts on Python 3 you need to install the following module, as the old MacOS module is no longer included in Mac Python:
Extra: type1
Lib/fontTools/ttLib/removeOverlaps.py
Simplify TrueType glyphs by merging overlapping contours and components.
Extra: pathops
Lib/fontTools/ufoLib
Package for reading and writing UFO source files; if available, it will use:
for reading and writing UFOs to the local filesystem or zip files (.ufoz), instead of the built-in fontTools.misc.filesystem package. The reader and writer classes can in theory also accept any object compatible the fs.base.FS interface, although not all have been tested.
Lib/fontTools/pens/cocoaPen.py and Lib/fontTools/pens/quartzPen.py
Pens for drawing glyphs with Cocoa NSBezierPath or CGPath require:
Lib/fontTools/pens/qtPen.py
Pen for drawing glyphs with Qt's QPainterPath, requires:
Lib/fontTools/pens/reportLabPen.py
Pen to drawing glyphs as PNG images, requires:
Lib/fontTools/pens/freetypePen.py
Pen to drawing glyphs with FreeType as raster images, requires:
Lib/fontTools/ttLib/tables/otBase.py
Use the Harfbuzz library to serialize GPOS/GSUB using hb_repack method, requires:
Extra: repacker
In alphabetical order:
aschmitz, Olivier Berten, Samyak Bhuta, Erik van Blokland, Petr van Blokland, Jelle Bosma, Sascha Brawer, Tom Byrer, Antonio Cavedoni, Frédéric Coiffier, Vincent Connare, David Corbett, Simon Cozens, Dave Crossland, Simon Daniels, Peter Dekkers, Behdad Esfahbod, Behnam Esfahbod, Hannes Famira, Sam Fishman, Matt Fontaine, Takaaki Fuji, Rob Hagemans, Yannis Haralambous, Greg Hitchcock, Jeremie Hornus, Khaled Hosny, John Hudson, Denis Moyogo Jacquerye, Jack Jansen, Tom Kacvinsky, Jens Kutilek, Antoine Leca, Werner Lemberg, Tal Leming, Liang Hai, Peter Lofting, Cosimo Lupo, Olli Meier, Masaya Nakamura, Dave Opstad, Laurence Penney, Roozbeh Pournader, Garret Rieger, Read Roberts, Colin Rofls, Guido van Rossum, Just van Rossum, Andreas Seidel, Georg Seifert, Chris Simpkins, Miguel Sousa, Adam Twardoch, Adrien Tétar, Vitaly Volkov, Paul Wise.
Copyright (c) 2000 BeOpen.com. All Rights Reserved.
Copyright (c) 1995-2001 Corporation for National Research Initiatives. All Rights Reserved.
Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved.
Have fun!
| Back | FazBrowse Home | New Git URL |