-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgetKerningPairsFromOTF.py
executable file
·322 lines (260 loc) · 12.9 KB
/
getKerningPairsFromOTF.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
#!/usr/bin/env python3
'''
Extract a list of all (flat) GPOS kerning pairs in a font, and report the
absolute number of pairs.
Supports RTL kerning.
Only GPOS kerning is considered.
Usage:
------
python getKerningPairsFromOTF.py <path to font file>
'''
from fontTools import ttLib
from pathlib import Path
import argparse
import sys
class LeftClass:
def __init__(self):
self.glyphs = []
self.class1Record = 0
class RightClass:
def __init__(self):
self.glyphs = []
self.class2Record = 0
def collect_unique_kern_lookup_indexes(featureRecord):
unique_kern_lookups = []
for featRecItem in featureRecord:
# print(featRecItem.FeatureTag)
# GPOS feature tags (e.g. kern, mark, mkmk, size) of each ScriptRecord
if featRecItem.FeatureTag == 'kern':
feature = featRecItem.Feature
for featLookupItem in feature.LookupListIndex:
if featLookupItem not in unique_kern_lookups:
unique_kern_lookups.append(featLookupItem)
return unique_kern_lookups
class OTFKernReader(object):
def __init__(self, fontPath):
self.font = ttLib.TTFont(fontPath)
self.kerningPairs = {}
self.singlePairs = {}
self.classPairs = {}
self.pairPosList = []
self.allLeftClasses = {}
self.allRightClasses = {}
self.output = []
if 'GPOS' not in self.font:
print("The font has no GPOS table", file=sys.stderr)
self.goodbye()
else:
self.analyzeFont()
self.findKerningLookups()
self.getPairPos()
self.getSinglePairs()
self.getClassPairs()
self.output = self.make_output()
def goodbye(self):
print('The fun ends here.', file=sys.stderr)
return
def make_output(self):
pair_value_list = []
for pair, value in self.kerningPairs.items():
pair_value_list.append(f'{pair[0]} {pair[1]} {value}')
pair_value_list.sort()
return pair_value_list
def analyzeFont(self):
self.gposTable = self.font['GPOS'].table
self.scriptList = self.gposTable.ScriptList
self.featureList = self.gposTable.FeatureList
self.featureCount = self.featureList.FeatureCount
self.featureRecord = self.featureList.FeatureRecord
self.unique_kern_lookups = collect_unique_kern_lookup_indexes(
self.featureRecord)
def findKerningLookups(self):
'''
Lookup types:
1 Single adjustment Adjust position of a single glyph
2 Pair adjustment Adjust position of a pair of glyphs
3 Cursive attachment Attach cursive glyphs
4 MarkToBase attachment Attach a combining mark to a base glyph
5 MarkToLigature attachment Attach a combining mark to a ligature
6 MarkToMark attachment Attach a combining mark to another mark
7 Context positioning Position one or more glyphs in context
8 Chained Context positioning Position one or more glyphs in chained context
9 Extension positioning Extension mechanism for other positionings
10+ Reserved for future use
'''
if not len(self.unique_kern_lookups):
print(
"The font has no kern feature.",
file=sys.stderr)
self.goodbye()
self.lookup_list = self.gposTable.LookupList
self.lookups = []
for kern_lookup_index in sorted(self.unique_kern_lookups):
lookup = self.lookup_list.Lookup[kern_lookup_index]
# Confirm this is a GPOS LookupType 2; or
# using an extension table (GPOS LookupType 9):
if lookup.LookupType not in [2, 9]:
print(
f'Info: GPOS LookupType {lookup.LookupType} found. '
'This type is neither a pair adjustment positioning '
'lookup (GPOS LookupType 2), nor using an extension table '
'(GPOS LookupType 9), which are the only ones supported.',
file=sys.stderr)
continue
self.lookups.append(lookup)
def getPairPos(self):
for lookup in self.lookups:
for subtableItem in lookup.SubTable:
if subtableItem.LookupType == 9: # extension table
if subtableItem.ExtensionLookupType == 8: # contextual
print(
'Contextual Kerning not (yet?) supported.',
file=sys.stderr)
continue
elif subtableItem.ExtensionLookupType == 2:
subtableItem = subtableItem.ExtSubTable
if subtableItem.Format not in [1, 2]:
print(
'WARNING: Coverage format '
f'{subtableItem.Coverage.Format} is not yet supported.',
file=sys.stderr)
if subtableItem.ValueFormat1 not in [0, 4, 5]:
print(
'WARNING: ValueFormat1 format '
f'{subtableItem.ValueFormat1} is not yet supported.',
file=sys.stderr)
if subtableItem.ValueFormat2 not in [0]:
print(
'WARNING: ValueFormat2 format '
f'{subtableItem.ValueFormat2} is not yet supported.',
file=sys.stderr)
self.pairPosList.append(subtableItem)
# Each glyph in this list will have a corresponding PairSet
# which will contain all the second glyphs and the kerning
# value in the form of PairValueRecord(s)
# self.firstGlyphsList.extend(subtableItem.Coverage.glyphs)
def getSinglePairs(self):
for pairPos in self.pairPosList:
if pairPos.Format == 1:
# single pair adjustment
firstGlyphsList = pairPos.Coverage.glyphs
# This iteration is done by index so we have a way
# to reference the firstGlyphsList:
for ps_index, pair_set in enumerate(pairPos.PairSet):
for pairValueRecordItem in pair_set.PairValueRecord:
firstGlyph = firstGlyphsList[ps_index]
secondGlyph = pairValueRecordItem.SecondGlyph
pair = firstGlyph, secondGlyph
valueFormat = pairPos.ValueFormat1
if valueFormat == 5: # RTL kerning
x_placement = pairValueRecordItem.Value1.XPlacement
x_advance = pairValueRecordItem.Value1.XAdvance
kernValue = f'<{x_placement} 0 {x_advance} 0>'
elif valueFormat == 0: # RTL pair with value <0 0 0 0>
kernValue = "<0 0 0 0>"
elif valueFormat == 4: # LTR kerning
kernValue = pairValueRecordItem.Value1.XAdvance
else:
print(
f"ValueFormat1 = {valueFormat}",
file=sys.stdout)
continue # skip the rest
self.kerningPairs[pair] = kernValue
self.singlePairs[pair] = kernValue
def getClassPairs(self):
for index, pairPos in enumerate(self.pairPosList):
if pairPos.Format == 2:
leftClasses = {}
rightClasses = {}
# Find left class with the Class1Record index="0".
# This first class is mixed into the "Coverage" table
# (e.g. all left glyphs) and has no class="X" property
# that is why we have to find the glyphs in that way.
lg0 = LeftClass()
# list of all glyphs kerned to the left of a pair:
allLeftGlyphs = pairPos.Coverage.glyphs
# list of all glyphs contained in left-sided kerning classes:
# allLeftClassGlyphs = pairPos.ClassDef1.classDefs.keys()
singleGlyphs = []
classGlyphs = []
for gName, classID in pairPos.ClassDef1.classDefs.items():
if classID == 0:
singleGlyphs.append(gName)
else:
classGlyphs.append(gName)
# coverage glyphs minus glyphs in real class (without class 0)
lg0.glyphs = list(set(allLeftGlyphs) - set(classGlyphs))
lg0.glyphs.sort()
leftClasses[lg0.class1Record] = lg0
className = f"class_{index}_{lg0.class1Record}"
self.allLeftClasses[className] = lg0.glyphs
# Find all the remaining left classes:
for leftGlyph in pairPos.ClassDef1.classDefs:
class1Record = pairPos.ClassDef1.classDefs[leftGlyph]
if class1Record != 0: # this was the crucial line.
lg = LeftClass()
className = f"class_{index}_{class1Record}"
lg.class1Record = class1Record
leftClasses.setdefault(
class1Record, lg).glyphs.append(leftGlyph)
self.allLeftClasses.setdefault(className, lg.glyphs)
# Same for the right classes:
for rightGlyph in pairPos.ClassDef2.classDefs:
class2Record = pairPos.ClassDef2.classDefs[rightGlyph]
rg = RightClass()
rg.class2Record = class2Record
className = f"class_{index}_{class2Record}"
rightClasses.setdefault(
class2Record, rg).glyphs.append(rightGlyph)
self.allRightClasses.setdefault(className, rg.glyphs)
for record_l in leftClasses:
for record_r in rightClasses:
if pairPos.Class1Record[record_l].Class2Record[record_r]:
valueFormat = pairPos.ValueFormat1
if valueFormat in [4, 5]:
kernValue = pairPos.Class1Record[record_l].Class2Record[record_r].Value1.XAdvance
elif valueFormat == 0:
# valueFormat zero is caused by a value of <0 0 0 0> on a class-class pair; skip these
continue
else:
print(
f"\tValueFormat1 = {valueFormat}",
file=sys.stdout)
continue # skip the rest
if kernValue != 0:
leftClassName = f'class_{index}_{leftClasses[record_l].class1Record}'
rightClassName = f'class_{index}_{rightClasses[record_r].class2Record}'
self.classPairs[(leftClassName, rightClassName)] = kernValue
for g_left in leftClasses[record_l].glyphs:
for g_right in rightClasses[record_r].glyphs:
if (g_left, g_right) in self.kerningPairs:
# if the kerning pair has already been assigned in pair-to-pair kerning
continue
else:
if valueFormat == 5: # RTL kerning
x_placement = pairPos.Class1Record[record_l].Class2Record[record_r].Value1.XPlacement
x_advance = pairPos.Class1Record[record_l].Class2Record[record_r].Value1.XAdvance
kernValue = f"<{x_placement} 0 {x_advance} 0>"
self.kerningPairs[(g_left, g_right)] = kernValue
else:
print('ERROR', file=sys.stderr)
def get_args(args=None):
parser = argparse.ArgumentParser(
description=__doc__
)
parser.add_argument(
'font_file',
metavar='FONT',
help='font file',
)
return parser.parse_args(args)
if __name__ == "__main__":
args = get_args()
font_path = Path(args.font_file)
if font_path.exists() and font_path.suffix in ['.otf', '.ttf']:
okr = OTFKernReader(font_path)
amount = str(len(okr.kerningPairs))
print('\n'.join(okr.output) + '\n', file=sys.stdout)
print('Total amount of kerning pairs: ' + amount, file=sys.stdout)
else:
print('That is not a valid font.', file=sys.stderr)