]> git.draconx.ca Git - scripts.git/blobdiff - mplus-t-gen.py
mplus-t-gen: Update scale and add python3 compatibility.
[scripts.git] / mplus-t-gen.py
index d95702a5416228484ca4b3d19532ac753a7904e1..b5c2b9d8841eef152f9e459d955723e6df54b497 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 # coding=utf-8
 #
-# Copyright © 2011 Nick Bowler
+# Copyright © 2011, 2018 Nick Bowler
 #
 # Generates new M+ fonts with the CJK characters enlarged, based on the IPAG
 # versions.  This gives better proportions relative to DejaVu Sans Mono in
@@ -31,8 +31,8 @@ for family in families:
        for glyph in font.selection.all().byGlyphs:
                for s in scripts:
                        if (glyph.script == s):
-                               glyph.transform(psMat.scale(1.35))
+                               glyph.transform(psMat.scale(1.25))
 
-       print "Generating " + font.familyname + ".ttf"
+       print("Generating %s.ttf" % (font.familyname))
        font.generate(font.familyname + ".ttf")
        font.close()