fontTools.ttLib
index
/code/fontTools/Lib/fontTools/ttLib/__init__.py

fontTools.ttLib -- a package for dealing with TrueType fonts.
 
This package offers translators to convert TrueType fonts to Python 
objects and vice versa, and additionally from Python to TTX (an XML-based
text format) and vice versa.
 
Example interactive session:
 
Python 1.5.2c1 (#43, Mar  9 1999, 13:06:43)  [CW PPC w/GUSI w/MSL]
Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
>>> from fontTools import ttLib
>>> tt = ttLib.TTFont("afont.ttf")
>>> tt['maxp'].numGlyphs
242
>>> tt['OS/2'].achVendID
'B&H'
>>> tt['head'].unitsPerEm
2048
>>> tt.saveXML("afont.ttx")
Dumping 'LTSH' table...
Dumping 'OS/2' table...
Dumping 'VDMX' table...
Dumping 'cmap' table...
Dumping 'cvt ' table...
Dumping 'fpgm' table...
Dumping 'glyf' table...
Dumping 'hdmx' table...
Dumping 'head' table...
Dumping 'hhea' table...
Dumping 'hmtx' table...
Dumping 'loca' table...
Dumping 'maxp' table...
Dumping 'name' table...
Dumping 'post' table...
Dumping 'prep' table...
>>> tt2 = ttLib.TTFont()
>>> tt2.importXML("afont.ttx")
>>> tt2['maxp'].numGlyphs
242
>>>

 
Package Contents
       
macUtils
sfnt
standardGlyphOrder
tables (package)
test (package)
xmlImport

 
Classes
       
exceptions.Exception
TTLibError
GlyphOrder
TTFont

 
class GlyphOrder
    A pseudo table. The glyph order isn't in the font as a separate
table, but it's nice to present it as such in the TTX format.
 
  Methods defined here:
__init__(self, tag)
fromXML(self, (name, attrs, content), ttFont)
toXML(self, writer, ttFont)

 
class TTFont
    The main font object. It manages file input and output, and offers
a convenient way of accessing tables. 
Tables will be only decompiled when neccesary, ie. when they're actually
accessed. This means that simple operations can be extremely fast.
 
  Methods defined here:
__contains__ = has_key(self, tag)
__delitem__(self, tag)
__getitem__(self, tag)
__init__(self, file=None, res_name_or_index=None, sfntVersion='\x00\x01\x00\x00', checkChecksums=0, verbose=0, recalcBBoxes=1)
The constructor can be called with a few different arguments.
When reading a font from disk, 'file' should be either a pathname
pointing to a file, or a readable file object. 
 
It we're running on a Macintosh, 'res_name_or_index' maybe an sfnt 
resource name or an sfnt resource index number or zero. The latter 
case will cause TTLib to autodetect whether the file is a flat file 
or a suitcase. (If it's a suitcase, only the first 'sfnt' resource
will be read!)
 
The 'checkChecksums' argument is used to specify how sfnt
checksums are treated upon reading a file from disk:
        0: don't check (default)
        1: check, print warnings if a wrong checksum is found
        2: check, raise an exception if a wrong checksum is found.
 
The TTFont constructor can also be called without a 'file' 
argument: this is the way to create a new empty font. 
In this case you can optionally supply the 'sfntVersion' argument.
 
If the recalcBBoxes argument is false, a number of things will *not*
be recalculated upon save/compile:
        1) glyph bounding boxes
        2) maxp font bounding box
        3) hhea min/max values
(1) is needed for certain kinds of CJK fonts (ask Werner Lemberg ;-).
Additionally, upon importing an TTX file, this option cause glyphs
to be compiled right away. This should reduce memory consumption 
greatly, and therefore should have some impact on the time needed 
to parse/compile large fonts.
__len__(self)
__setitem__(self, tag, table)
close(self)
If we still have a reader object, close it.
getGlyphID(self, glyphName)
getGlyphName(self, glyphID)
getGlyphNames(self)
Get a list of glyph names, sorted alphabetically.
getGlyphNames2(self)
Get a list of glyph names, sorted alphabetically, 
but not case sensitive.
getGlyphOrder(self)
getGlyphSet(self, preferCFF=1)
Return a generic GlyphSet, which is a dict-like object
mapping glyph names to glyph objects. The returned glyph objects
have a .draw() method that supports the Pen protocol, and will
have an attribute named 'width', but only *after* the .draw() method
has been called.
 
If the font is CFF-based, the outlines will be taken from the 'CFF '
table. Otherwise the outlines will be taken from the 'glyf' table.
If the font contains both a 'CFF ' and a 'glyf' table, you can use
the 'preferCFF' argument to specify which one should be taken.
getTableData(self, tag)
Returns raw table data, whether compiled or directly read from disk.
has_key(self, tag)
importXML(self, file, progress=None)
Import a TTX file (an XML-based text format), so as to recreate
a font object.
isLoaded(self, tag)
Return true if the table identified by 'tag' has been 
decompiled and loaded into memory.
keys(self)
save(self, file, makeSuitcase=0, reorderTables=1)
Save the font to disk. Similarly to the constructor, 
the 'file' argument can be either a pathname or a writable
file object.
 
On the Mac, if makeSuitcase is true, a suitcase (resource fork)
file will we made instead of a flat .ttf file.
saveXML(self, fileOrPath, progress=None, tables=None, skipTables=None, splitTables=0, disassembleInstructions=1)
Export the font as TTX (an XML-based text file), or as a series of text
files when splitTables is true. In the latter case, the 'fileOrPath'
argument should be a path to a directory.
The 'tables' argument must either be false (dump all tables) or a
list of tables to dump. The 'skipTables' argument may be a list of tables
to skip, but only when the 'tables' argument is false.
setGlyphOrder(self, glyphOrder)

 
class TTLibError(exceptions.Exception)
     Methods inherited from exceptions.Exception:
__getitem__(...)
__init__(...)
__str__(...)

 
Functions
       
debugmsg(msg)
getTableClass(tag)
Fetch the packer/unpacker class for a table. 
Return None when no class is found.
getTableModule(tag)
Fetch the packer/unpacker module for a table. 
Return None when no module is found.
identifierToTag(ident)
the opposite of tagToIdentifier()
newTable(tag)
Return a new instance of a table.
reorderFontTables(inFile, outFile, tableOrder=None, checkChecksums=0)
Rewrite a font file, ordering the tables as recommended by the
OpenType specification 1.4.
sortedTagList(tagList, tableOrder=None)
Return a sorted copy of tagList, sorted according to the OpenType
specification, or according to a custom tableOrder. If given and not
None, tableOrder needs to be a list of tag names.
tagToIdentifier(tag)
Convert a table tag to a valid (but UGLY) python identifier, 
as well as a filename that's guaranteed to be unique even on a 
caseless file system. Each character is mapped to two characters.
Lowercase letters get an underscore before the letter, uppercase
letters get an underscore after the letter. Trailing spaces are
trimmed. Illegal characters are escaped as two hex bytes. If the
result starts with a number (as the result of a hex escape), an
extra underscore is prepended. Examples: 
        'glyf' -> '_g_l_y_f'
        'cvt ' -> '_c_v_t'
        'OS/2' -> 'O_S_2f_2'
tagToXML(tag)
Similarly to tagToIdentifier(), this converts a TT tag
to a valid XML element name. Since XML element names are
case sensitive, this is a fairly simple/readable translation.
xmlToTag(tag)
The opposite of tagToXML()

 
Data
        OTFTableOrder = ['head', 'hhea', 'maxp', 'OS/2', 'name', 'cmap', 'post', 'CFF ']
TTFTableOrder = ['head', 'hhea', 'maxp', 'OS/2', 'hmtx', 'LTSH', 'VDMX', 'hdmx', 'cmap', 'fpgm', 'prep', 'cvt ', 'loca', 'glyf', 'kern', 'name', 'post', 'gasp', 'PCLT']
endian = 'big'
haveMacSupport = 1