mirror of
https://github.com/weiweihuanghuang/Work-Sans.git
synced 2024-11-22 21:33:10 +03:00
14a16d09c6
Only set bit 4 instead
23 lines
717 B
Python
23 lines
717 B
Python
# This python script finds and replaces the flags="0x0" with flags="0x4" to set the ROUND_XY_TO_GRID bit in a TTF.
|
|
import os
|
|
import sys
|
|
from fontTools.ttLib import TTFont
|
|
from fontTools.ttx import makeOutputFileName
|
|
|
|
inputTTF = sys.argv[1]
|
|
|
|
# open the source file and read it
|
|
font = TTFont(inputTTF)
|
|
extension = os.path.splitext(inputTTF)[1]
|
|
if 'glyf' in font:
|
|
glyf = font['glyf']
|
|
for glyphname in glyf.glyphs:
|
|
glyph = glyf.glyphs[glyphname]
|
|
if glyph.isComposite():
|
|
glyph.expand(glyf)
|
|
for component in glyph.components:
|
|
component.flags |= 0x4
|
|
glyph.compact(glyf)
|
|
outputTTF = makeOutputFileName(inputTTF, '', extension)
|
|
font.save(outputTTF)
|