-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
182086d
commit a43bf72
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/usr/bin/env python3 | ||
from fontTools.ttLib import TTFont | ||
from fontTools.ttLib.tables._g_l_y_f import Glyph | ||
from bumpfontversion.sfnthandler import SFNTHandler | ||
from bumpversion.version_part import VersionPart | ||
import glob | ||
|
||
h = SFNTHandler() | ||
|
||
for font in glob.glob("*.ttf"): | ||
ttfont = TTFont(font) | ||
for table in ttfont["cmap"].tables: | ||
if table.format == 4: | ||
table.cmap[ord(" ")] = "space" | ||
table.cmap[0xA0] = "space" | ||
glyphs = ttfont.getGlyphOrder() | ||
glyphs.append("space") | ||
ttfont.setGlyphOrder(glyphs) | ||
|
||
ttfont["glyf"].glyphs["space"] = Glyph() | ||
ttfont["hmtx"].metrics["space"] = (1024, 0) | ||
|
||
ttfont.save(font) | ||
|
||
current_version = h.current_version(font) | ||
current_version._values["minor"] = VersionPart("031") | ||
h.set_version(font, current_version) |