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.

17 lines
318 B

1 month ago
  1. @echo off
  2. @rem Convert PDF to DSC
  3. if %1/==/ goto usage
  4. if %2/==/ goto usage
  5. call "%~dp0gssetgs.bat"
  6. rem Watcom C deletes = signs, so use # instead.
  7. %GSC% -q -dNODISPLAY -P- -dSAFER -dDELAYSAFER -sPDFname#%1 -sDSCname#%2 -sOutputFile#%2 pdf2dsc.ps
  8. goto end
  9. :usage
  10. echo "Usage: pdf2dsc input.pdf output.dsc"
  11. :end