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.

16 lines
350 B

1 month ago
  1. @echo off
  2. if %1/==/ goto usage
  3. if %2/==/ goto usage
  4. set infile=%1
  5. set outfile=%2
  6. rem Now convert the input to EPSF and add the Preview to the EPSF file
  7. gsos2 -q -dNOOUTERSAVE -dNODISPLAY -dLastPage=1 -sOutputFile=%outfile% --permit-file-read=%infile% %~dp0ps2epsi.ps %infile%
  8. goto end
  9. :usage
  10. echo "Usage: ps2epsi <infile.ps> <outfile.epi>"
  11. :end