add v2.0 Beta release variants

This commit is contained in:
sayyadirfanali
2025-12-14 18:39:00 +05:30
parent 9138e77400
commit 24ccfd2458
53 changed files with 44771 additions and 11607 deletions

27
changeheight.py Normal file
View File

@@ -0,0 +1,27 @@
import fontforge
font = fontforge.open("Myna-Regular.sfd")
ascent = font.ascent
descent = font.descent
RATIO = 0.9
# general
font.ascent = int(font.ascent * RATIO)
font.descent = int(font.descent * RATIO)
# hhea
font.hhea_ascent = int(font.hhea_ascent * RATIO)
font.hhea_descent = int(font.hhea_descent * RATIO)
# OS/2 typo
font.os2_typoascent = font.hhea_ascent
font.os2_typodescent = font.hhea_descent
# OS/2 win
font.os2_winascent = ascent # can increase or decrease this if clipped
font.os2_windescent = descent
font.save("Myna-Regular.sfd")
font.close()