Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know of a command-line tool that will convert both TTF and OTF fonts to SVG fonts?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can use fontforge or batik to do this from the commandline.

With fontforge (see scripting documentation):

#!/usr/bin/fontforge
Open($1)
Generate($1:r + ".svg")

Save the above to convert2svgfont.pe file, then invoke as:

convert2svgfont.pe myfont.ttf

For batik see this documentation, install and then invoke as:

java -jar batik-ttf2svg.jar myfont.ttf -o myfont.svg
share|improve this answer
Does batik-ttf2svg convert both otf (CFF-based OpenType) as well as ttf as the questioner asked? – djangodude Oct 27 '12 at 3:09
@djangodude hmm, I'm not 100% sure. – Erik Dahlström Oct 27 '12 at 9:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.