Font to SVG converter.
This commit is contained in:
parent
9d0b2159e2
commit
226d552932
7
bin/fonttosvg
Executable file
7
bin/fonttosvg
Executable 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;' $@
|
Loading…
Reference in New Issue
Block a user