How to use font forge to create font in cmd

tell me how to convert ttf to svg to fontforge utility from command line windows or how to use api in .NET, thanks

+4
source share
1 answer

Creating a script with these two functions calls :

Open($1,1) Generate($2) 

and it works like this:

 fontforge -script script.pe input.ttf output.svg 

should do what you want.

+3
source

Source: https://habr.com/ru/post/1495760/


All Articles