1@echo off
2@rem Convert .pfb fonts to .pfa format
3
4if %1/==/ goto usage
5if %2/==/ goto usage
6if not %3/==/ goto usage
7call "%~dp0gssetgs.bat"
8
9%GSC% -P- -q -dNODISPLAY -- pfbtopfa.ps %1 %2
10goto end
11
12:usage
13echo "Usage: pfbtopfa input.pfb output.pfa"
14
15:end
16