forked from adobe-fonts/source-serif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildVFs.py
executable file
·186 lines (150 loc) · 4.97 KB
/
buildVFs.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
#!/usr/bin/env python3
'''
Build script for Variable Fonts
'''
from pathlib import Path
import argparse
import subprocess
import shutil
FAMILY_NAME = 'SourceSerif4Variable'
ROOT_DIR = Path(__file__).parent
def get_args():
parser = argparse.ArgumentParser(
description=(__doc__))
parser.add_argument(
'-v', '--verbose',
action='store_true',
default=False,
help='verbose output')
parser.add_argument(
'--hinted',
action='store_true',
default=False,
help='hint VFs')
parser.add_argument(
'-d', '--debug',
action='store_true',
default=False,
help='do not delete temporary files')
return parser.parse_args()
def remove_source_otfs(slope=None):
# deletes source otf files
if slope:
source_directory = ROOT_DIR.joinpath(
f'{slope}', 'Masters')
else:
source_directory = ROOT_DIR
for otf_to_delete in source_directory.rglob("master_*/*.otf"):
subprocess.call(['rm', otf_to_delete])
def build_vf(args, slope=None):
# default mode is being quiet
STDOUT = subprocess.DEVNULL
STDERR = subprocess.DEVNULL
if any([args.verbose, args.debug]):
# verbose output
STDOUT = None
STDERR = None
if slope:
target_dir = ROOT_DIR.joinpath(f'{slope}')
vf_output_name = ROOT_DIR.joinpath(
target_dir, f'{FAMILY_NAME}-{slope}')
else:
target_dir = ROOT_DIR
vf_output_name = ROOT_DIR.joinpath(
target_dir, f'{FAMILY_NAME}')
output_otf = vf_output_name.with_suffix('.otf')
output_ttf = vf_output_name.with_suffix('.ttf')
designspace_file = vf_output_name.with_suffix('.designspace')
hinting_data_file = target_dir.joinpath('vf_hinting_metadata.plist')
# build master OTFs
subprocess.call(
# --mkot to set makeotf options:
# gs to omit glyphs not in the GOADB
# osv 4 to write os/2 table v4
['buildmasterotfs', '--mkot', '-gs,-osv,4', '-d', designspace_file],
stdout=STDOUT,
stderr=STDERR
)
if args.hinted:
# split combined private dicts into FDArrays
subprocess.call(
['splitpsdicts', '-m', hinting_data_file, '-d', designspace_file],
stdout=STDOUT,
stderr=STDERR
)
# merge OTFs into CFF2
subprocess.call(
# -k is for using 'post' table format 2
['buildcff2vf', '-k', '--omit-mac-names', '-d', designspace_file],
stdout=STDOUT,
stderr=STDERR
)
if args.hinted:
# hint the file
subprocess.call(
['psautohint', '--no-flex', output_otf],
stdout=STDOUT,
stderr=STDERR
)
if not args.hinted:
# at the moment, we don’t subroutinize the hinted fonts.
# extract and subroutinize the CFF2 table
subprocess.call(
['tx', '-cff2', '+S', '+b', '-std', output_otf, '/tmp/.tb_cff2'],
stdout=STDOUT,
stderr=STDERR
)
# replace CFF2 table with subroutinized version
subprocess.call(
['sfntedit', '-a', 'CFF2=/tmp/.tb_cff2', output_otf],
stdout=STDOUT,
stderr=STDERR
)
# build variable TTF with fontmake.
subprocess.call([
'fontmake', '-m', designspace_file, '-o', 'variable',
'--production-names', '--output-path', output_ttf,
'--feature-writer', 'None'],
stdout=STDOUT,
stderr=STDERR
)
# use DSIG, name, OS/2, MVAR, hhea, post, and STAT tables from OTFs
tables_from_otf = (
'DSIG=/tmp/.tb_DSIG,name=/tmp/.tb_name,OS/2=/tmp/.tb_os2,'
'MVAR=/tmp/.tb_MVAR,hhea=/tmp/.tb_hhea,post=/tmp/.tb_post,'
'STAT=/tmp/.tb_STAT,fvar=/tmp/.tb_fvar')
subprocess.call([
'sfntedit', '-x', tables_from_otf, output_otf])
subprocess.call([
'sfntedit', '-a', tables_from_otf, output_ttf])
# use cmap, GDEF, GPOS, and GSUB tables from TTFs
tables_from_ttf = (
'cmap=/tmp/.tb_cmap,GDEF=/tmp/.tb_GDEF,'
'GPOS=/tmp/.tb_GPOS,GSUB=/tmp/.tb_GSUB')
subprocess.call([
'sfntedit', '-x', tables_from_ttf, output_ttf])
subprocess.call([
'sfntedit', '-a', tables_from_ttf, output_otf])
# move font files to target directory
if output_otf.exists():
shutil.move(output_otf, var_dir)
if output_ttf.exists():
shutil.move(output_ttf, var_dir)
# delete build artifacts
if not args.debug:
remove_source_otfs(slope)
if __name__ == '__main__':
args = get_args()
slopes = ['Roman', 'Italic']
if args.hinted:
output_dir_name = 'VAR_hinted'
else:
output_dir_name = 'VAR'
var_dir = ROOT_DIR.joinpath('target', output_dir_name)
# clean existing target directory
if var_dir.exists():
subprocess.call(['rm', '-rf', var_dir])
# build target directory
var_dir.mkdir(parents=True)
for slope in slopes:
build_vf(args, slope)