summaryrefslogtreecommitdiff
path: root/lib/pfbtopfa.bat
blob: cb97ec458bcc15a3dcb3c17f0d01f1350e2eff83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off 
@rem Convert .pfb fonts to .pfa format

if %1/==/ goto usage
if %2/==/ goto usage
if not %3/==/ goto usage
call "%~dp0gssetgs.bat"

%GSC% -P- -q -dNODISPLAY -- pfbtopfa.ps %1 %2
goto end

:usage
echo "Usage: pfbtopfa input.pfb output.pfa"

:end