-
Notifications
You must be signed in to change notification settings - Fork 52
/
pfa2txt.py
executable file
·110 lines (82 loc) · 2.89 KB
/
pfa2txt.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
102
103
104
105
106
107
108
109
110
#!/usr/bin/env python
from __future__ import print_function
import os
import sys
import time
from subprocess import Popen, PIPE
__doc__ = """
pfa2txt v2.0 - Feb 03 2016
This script takes a path to a folder as input, finds all the Type 1 fonts
(.pfa files) inside that folder and its subdirectories, and converts them
to plain text Type 1 fonts (.txt files; the Private and CharStrings
dictionaries are not encrypted). If a path is not provided, the script will
use the current path as the top-most directory.
==================================================
Versions:
v1.0 - Apr 08 2013 - Initial release
v2.0 - Feb 03 2016 - Modernized.
"""
def getFontPaths(path):
fontsList = []
for r, folders, files in os.walk(path):
for file in files:
fileName, extension = os.path.splitext(file)
extension = extension.lower()
if extension == ".pfa":
fontsList.append(os.path.join(r, file))
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('Converting %s...(%d/%d)' % (styleName, i, totalFonts))
# Assemble TXT & PFA file names
fileNameNoExtension, fileExtension = os.path.splitext(fontFileName)
pfaPath = fileNameNoExtension + '.pfa'
txtPath = fileNameNoExtension + '.txt'
# Convert PFA to TXT using detype1
cmd = 'detype1 "%s" > "%s"' % (pfaPath, txtPath)
popen = Popen(cmd, shell=True, stdout=PIPE)
popenout, popenerr = popen.communicate()
if popenout:
print(popenout)
if popenerr:
print(popenerr)
# Delete PFA font
if os.path.exists(pfaPath):
os.remove(pfaPath)
i += 1
def run():
# if a path is provided
if len(sys.argv[1:]):
baseFolderPath = sys.argv[1]
if baseFolderPath[-1] == '/': # remove last slash if present
baseFolderPath = baseFolderPath[:-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
elapsedMinutes = elapsedSeconds / 60
if elapsedMinutes < 1:
print('Completed in %.1f seconds.' % elapsedSeconds)
else:
print('Completed in %.1f minutes.' % elapsedMinutes)
if __name__ == '__main__':
run()