afmLib: Read/write Adobe Font Metrics files

Module for reading and writing AFM (Adobe Font Metrics) files.

Note that this has been designed to read in AFM files generated by Fontographer and has not been tested on many other files. In particular, it does not implement the whole Adobe AFM specification [1] but, it should read most “common” AFM files.

Here is an example of using afmLib to read, modify and write an AFM file:

>>> from fontTools.afmLib import AFM
>>> f = AFM("Tests/afmLib/data/TestAFM.afm")
>>>
>>> # Accessing a pair gets you the kern value
>>> f[("V","A")]
-60
>>>
>>> # Accessing a glyph name gets you metrics
>>> f["A"]
(65, 668, (8, -25, 660, 666))
>>> # (charnum, width, bounding box)
>>>
>>> # Accessing an attribute gets you metadata
>>> f.FontName
'TestFont-Regular'
>>> f.FamilyName
'TestFont'
>>> f.Weight
'Regular'
>>> f.XHeight
500
>>> f.Ascender
750
>>>
>>> # Attributes and items can also be set
>>> f[("A","V")] = -150 # Tighten kerning
>>> f.FontName = "TestFont Squished"
>>>
>>> # And the font written out again (remove the # in front)
>>> #f.write("testfont-squished.afm")

Footnotes

exception fontTools.afmLib.error[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

class fontTools.afmLib.AFM(path=None)[source]
addComment(comment)[source]

Adds a new comment to the file.

addComposite(glyphName, components)[source]

Specifies that the glyph glyphName is made up of the given components. The components list should be of the following form:

[
        (glyphname, xOffset, yOffset),
        ...
]
chars()[source]

Returns a list of all glyph names in the font.

comments()[source]

Returns all comments from the file.

has_char(char)[source]

Returns True if the given glyph exists in the font.

has_kernpair(pair)[source]

Returns True if the given glyph pair (specified as a tuple) exists in the kerning dictionary.

kernpairs()[source]

Returns a list of all kern pairs in the kerning dictionary.

read(path)[source]

Opens, reads and parses a file.

write(path, sep='\r')[source]

Writes out an AFM font to the given path.