You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
256 B

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