pfbtopfa.bat 309 B

12345678910111213141516
  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. if %1/==/ goto usage
  5. if %2/==/ goto usage
  6. if not %3/==/ goto usage
  7. call gssetgs.bat
  8. %GSC% -q -dNODISPLAY -- pfbtopfa.ps %1 %2
  9. goto end
  10. :usage
  11. echo "Usage: pfbtopfa input.pfb output.pfa"
  12. :end