-
Notifications
You must be signed in to change notification settings - Fork 1
/
domywebfont.py
executable file
·107 lines (89 loc) · 3.27 KB
/
domywebfont.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
#!/usr/bin/python
#
# Copyright 2014 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Routines for subsetting fonts."""
__author__ = '[email protected] (Roozbeh Pournader)'
__extender__ = '[email protected]" (Bruce Lee)'
import sys
import os
import re
from fontTools import subset
import coverage
def subset_font(source_file, target_file,
include, exclude=None, options=None):
"""Subsets a font file.
Subsets a font file based on a specified character set. If only include is
specified, only characters from that set would be included in the output
font. If only exclude is specified, all characters except those in that
set will be included. If neither is specified, the character set will
remain the same, but inaccessible glyphs will be removed.
Args:
source_file: Input file name.
target_file: Output file name
include: The list of characters to include from the source font.
exclude: The list of characters to exclude from the source font.
options: A dictionary listing which options should be different from the
default.
Raises:
NotImplementedError: Both include and exclude were specified.
"""
include = get_charset(include)
opt = subset.Options()
opt.name_IDs = ['*']
opt.name_legacy = True
opt.name_languages = ['*']
opt.layout_features = ['*']
opt.notdef_outline = True
opt.recalc_bounds = True
opt.recalc_timestamp = True
opt.canonical_order = True
if options is not None:
for name, value in options.iteritems():
setattr(opt, name, value)
if include is not None:
if exclude is not None:
raise NotImplementedError(
'Subset cannot include and exclude a set at the same time.')
target_charset = include
else:
if exclude is None:
exclude = []
source_charset = coverage.character_set(source_file)
target_charset = source_charset - set(exclude)
font = subset.load_font(source_file, opt)
subsetter = subset.Subsetter(options=opt)
subsetter.populate(unicodes=target_charset)
subsetter.subset(font)
subset.save_font(font, target_file, opt)
def usage():
print u"usage: $ python domywebfont.py <input_font> <output_font> <word_list>"
def get_charset(words_file):
word_list = open(words_file)
charset = []
for line in word_list:
for word in list(line.strip().decode('utf-8')):
uni = ord(word)
charset.append(uni)
return charset
def main(argv):
"""Subset the first argument to second, dropping unused parts of the font.
"""
if len(argv) == 4:
subset_font(argv[1], argv[2], argv[3])
else:
usage()
quit()
if __name__ == '__main__':
main(sys.argv)