Changeset 250
- Timestamp:
- 08/29/08 15:32:20 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
packages/ufo2fdk/trunk/Lib/ufo2fdk/makeotfParts.py
r159 r250 2 2 import shutil 3 3 import re 4 from outlineOTF import makePSName, makeOutlineOTF4 from outlineOTF import makePSName, OutlineOTFCompiler, getFontBBox 5 5 from featureTableWriter import FeatureTableWriter, winStr, macStr 6 from outlineOTF import makeOutlineOTF, getFontBBox7 6 8 7 … … 28 27 29 28 outlinePath = os.path.join(path, "font.otf") 30 makeOutlineOTF(font, outlinePath, glyphOrder) 29 c = OutlineOTFCompiler(font, outlinePath, glyphOrder) 30 c.compile() 31 31 32 32 paths = dict(
