API Reference for Enthought Tool Suite 3.2.0
This is a python interface to Adobe Font Metrics Files. Although a number of other python implementations exist (and may be more complete than mine) I decided not to go with them because either they were either
- copyighted or used a non-BSD compatible license
- had too many dependencies and I wanted a free standing lib
- Did more than I needed and it was easier to write my own than figure out how to just get what I needed from theirs
It is pretty easy to use, and requires only built-in python libs
>>> from afm import AFM
>>> fh = file('ptmr8a.afm')
>>> afm = AFM(fh)
>>> afm.string_width_height('What the heck?')
(6220.0, 683)
>>> afm.get_fontname()
'Times-Roman'
>>> afm.get_kern_dist('A', 'f')
0
>>> afm.get_kern_dist('A', 'y')
-92.0
>>> afm.get_bbox_char('!')
[130, -9, 238, 676]
>>> afm.get_bbox_font()
[-168, -218, 1000, 898]
Parse the Adobe Font Metics file in file handle fh Return value is a (dhead, dcmetrics, dkernpairs, dcomposite) tuple where
dhead : a parse_header dict dcmetrics : a parse_composites dict dkernpairs : a parse_kern_pairs dict, possibly {} dcomposite : a parse_composites dict , possibly {}
| Local name | Refers to |
|---|---|
| os | os |
| sys | sys |
© Copyright 2002-2009 Enthought, Inc.