6

prompt please how to convert the ttf to svg in the utility fontforge from the command line windows, or how use api in .NET, thanks

Artem Polishchuk
  • 505
  • 5
  • 17

1 Answers1

5

Creating a script with these two function calls:

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

and running it like this:

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

should do what you want.

Ansgar Wiechers
  • 193,178
  • 25
  • 254
  • 328