1@echo off 2@rem $Id: pfbtopfa.bat,v 1.1 2003/02/06 06:09:52 alexcher Exp $ 3@rem Convert .pfb fonts to .pfa format 4 5if %1/==/ goto usage 6if %2/==/ goto usage 7if not %3/==/ goto usage 8call gssetgs.bat 9 10%GSC% -q -dNODISPLAY -- pfbtopfa.ps %1 %2 11goto end 12 13:usage 14echo "Usage: pfbtopfa input.pfb output.pfa" 15 16:end 17