Font to SVG converter.

This commit is contained in:
Artem Sapegin 2013-06-04 13:57:34 +04:00
parent 9d0b2159e2
commit 226d552932
1 changed files with 7 additions and 0 deletions

7
bin/fonttosvg Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
# Convert font to set of SVG files
command -v fontforge >/dev/null 2>&1 || { echo >&2 "fontforge not installed."; exit 1; }
fontforge -lang=ff -c 'Open($1); SelectWorthOutputting(); foreach Export("svg"); endloop;' $@