1############################################# 2ttLib: Read/write OpenType and TrueType fonts 3############################################# 4 5Most users of the fontTools library will be using it to generate or manipulate 6OpenType and TrueType fonts. (FontTools initially only supported TrueType fonts, 7gaining OpenType support in version 2.0, and so uses the ``tt`` prefix to refer to 8both kinds of font. Because of this we will refer to both as "TrueType fonts" 9unless we need to make a distinction.) 10 11The main entry point for such operations is the :py:mod:`fontTools.ttLib.ttFont` 12module, but other modules also provide useful functionality for handling OpenType 13fonts. 14 15.. toctree:: 16 :maxdepth: 2 17 18 ttFont 19 ttCollection 20 macUtils 21 sfnt 22 standardGlyphOrder 23 tables 24 woff2 25