12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import sys
- import os
- from fontTools import ttLib
- def set_empty_dsig(ttFont):
- newDSIG = ttLib.newTable("DSIG")
- newDSIG.ulVersion = 1
- newDSIG.usFlag = 0
- newDSIG.usNumSigs = 0
- newDSIG.signatureRecords = []
- ttFont.tables["DSIG"] = newDSIG
- def main(argv):
- for path in argv:
- if not os.path.exists(path):
- sys.stderr.write(
- "[fix-dsig.py] ERROR: " +
- path +
- " is not a valid path to a font file"
- )
- sys.exit(1)
- else:
- font = ttLib.TTFont(file=path, recalcTimestamp=False)
- set_empty_dsig(font)
- font.save(path)
- print(path + " - successful DSIG table fix")
- if __name__ == '__main__':
- main(sys.argv[1:])
|