diff --git a/bin/otf2ttf b/bin/otf2ttf new file mode 100755 index 00000000..a67ede8f --- /dev/null +++ b/bin/otf2ttf @@ -0,0 +1,14 @@ +#!/usr/bin/env python +import fontforge as ff +import sys + +args = sys.argv[1:] + +if args[0] == '--help': + print("otf2ttf ") +else: + otf = args[0] + ttf = otf.replace('otf','ttf') + print( otf + ' => ' + ttf ) + f = ff.open( otf ) + f.generate( ttf )