Requirement
FontForge was installed and can be access in terminal.
Simple command to convert font or just to regenerate font.
fontforge -lang=ff -c 'Open($1); Generate($2); Close();' in.otf out.ttf
Or using absolute path.
fontforge -lang=ff -c 'Open($1); Generate($2); Close();' "$PWD/in.otf" "$PWD/out.ttf"
Top comments (0)