forked from adobe-type-tools/python-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ufo2pfa.py
executable file
·101 lines (75 loc) · 2.35 KB
/
ufo2pfa.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/usr/bin/env python
from __future__ import print_function
import os
import sys
import time
from subprocess import Popen, PIPE
__doc__ = """
ufo2pfa v2.0 - Feb 03 2016
This script takes a path to a folder as input, finds all the UFO fonts
inside that folder and its subdirectories, and converts them to Type 1
fonts (.pfa files). If a path is not provided, the script will use the
current path as the top-most directory.
==================================================
Versions:
v1.0 - Feb 23 2013 - Initial release
v2.0 - Feb 03 2016 - Modernized and removed defcon and ufo2fdk dependencies.
"""
def getFontPaths(path):
fontsList = []
for r, folders, files in os.walk(path):
for folder in folders:
fileName, extension = os.path.splitext(folder)
extension = extension.lower()
if extension == ".ufo":
fontsList.append(os.path.join(r, folder))
return fontsList
def doTask(fonts):
totalFonts = len(fonts)
print("%d fonts found" % totalFonts)
i = 1
for font in fonts:
folderPath, fontFileName = os.path.split(font)
styleName = os.path.basename(folderPath)
# Change current directory to the folder where the font is contained
os.chdir(folderPath)
print('\n*******************************')
print('Processing %s...(%d/%d)' % (styleName, i, totalFonts))
# Assemble PFA file name
fileNameNoExtension, fileExtension = os.path.splitext(fontFileName)
pfaPath = fileNameNoExtension + '.pfa'
# Convert UFO to PFA using tx
cmd = 'tx -t1 "%s" "%s"' % (fontFileName, pfaPath)
popen = Popen(cmd, shell=True, stdout=PIPE)
popenout, popenerr = popen.communicate()
if popenout:
print(popenout)
if popenerr:
print(popenerr)
i += 1
def run():
# if a path is provided
if len(sys.argv[1:]):
baseFolderPath = os.path.normpath(sys.argv[1])
# make sure the path is valid
if not os.path.isdir(baseFolderPath):
print('Invalid directory.')
return
# if a path is not provided, use the current directory
else:
baseFolderPath = os.getcwd()
t1 = time.time()
fontsList = getFontPaths(os.path.abspath(baseFolderPath))
if len(fontsList):
doTask(fontsList)
else:
print("No fonts found.")
return
t2 = time.time()
elapsedSeconds = t2-t1
if (elapsedSeconds/60) < 1:
print('\nCompleted in %.1f seconds.' % elapsedSeconds)
else:
print('\nCompleted in %.1f minutes.' % (elapsedSeconds/60))
if __name__=='__main__':
run()