forked from adobe-type-tools/kern-dump
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgetKerningPairsFromUFO.py
executable file
·124 lines (99 loc) · 3.88 KB
/
getKerningPairsFromUFO.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#!/usr/bin/python
# coding: utf-8
import sys
import os
import itertools
class UFOkernReader(object):
def __init__(self, font, includeZero=False):
self.f = font
self.group_group_pairs = {}
self.group_glyph_pairs = {}
self.glyph_group_pairs = {}
self.glyph_glyph_pairs = {}
self.allKerningPairs = self.makePairDicts(includeZero)
self.output = self.makeOutput(self.allKerningPairs)
self.totalKerning = sum(self.allKerningPairs.values())
self.absoluteKerning = sum([abs(value) for value in self.allKerningPairs.values()])
def makeOutput(self, kerningDict):
output = []
for (left, right), value in kerningDict.items():
output.append('/%s /%s %s' % (left, right, value))
output.sort()
return output
def allCombinations(self, left, right):
leftGlyphs = self.f.groups.get(left, [left])
rightGlyphs = self.f.groups.get(right, [right])
combinations = list(itertools.product(leftGlyphs, rightGlyphs))
return combinations
def makePairDicts(self, includeZero):
kerningPairs = {}
for (left, right), value in self.f.kerning.items():
if '@' in left and '@' in right:
# group-to-group-pair
for combo in self.allCombinations(left, right):
self.group_group_pairs[combo] = value
elif '@' in left and '@' not in right:
# group-to-glyph-pair
for combo in self.allCombinations(left, right):
self.group_glyph_pairs[combo] = value
elif '@' not in left and '@' in right:
# glyph-to-group-pair
for combo in self.allCombinations(left, right):
self.glyph_group_pairs[combo] = value
else:
# glyph-to-glyph-pair a.k.a. single pair
self.glyph_glyph_pairs[(left, right)] = value
# The updates occur from the most general pairs to the most specific.
# This means that any given class kerning values are overwritten with
# the intended exceptions.
kerningPairs.update(self.group_group_pairs)
kerningPairs.update(self.group_glyph_pairs)
kerningPairs.update(self.glyph_group_pairs)
kerningPairs.update(self.glyph_glyph_pairs)
if includeZero is False:
# delete any kerning values == 0.
# This cannot be done in the previous loop, since exceptions
# might set a previously established kerning pair to be 0.
cleanKerningPairs = dict(kerningPairs)
for pair in kerningPairs:
if kerningPairs[pair] == 0:
del cleanKerningPairs[pair]
return cleanKerningPairs
else:
return kerningPairs
def run(font):
ukr = UFOkernReader(font, includeZero=True)
scrap = os.popen('pbcopy', 'w')
output = '\n'.join(ukr.output)
scrap.write(output)
scrap.close()
if inRF:
pass
# print('Total length of kerning:', ukr.totalKerning)
if inCL:
print('\n'.join(ukr.output), '\n')
print('Total amount of kerning pairs:', len(ukr.output))
print('List of kerning pairs copied to clipboard.')
if __name__ == '__main__':
inRF = False
inCL = False
try:
import mojo
inRF = True
f = CurrentFont()
if f:
run(f)
else:
print(u'You need to open a font first. \U0001F625')
except ImportError:
try:
import defcon
inCL = True
path = os.path.normpath(sys.argv[-1])
if os.path.splitext(path)[-1] in ['.ufo', '.UFO']:
f = defcon.Font(path)
run(f)
else:
print('No UFO file given.')
except ImportError:
print(u'You don’t have Defcon installed. \U0001F625')