home *** CD-ROM | disk | FTP | other *** search
/ Freelog Special Freeware 31 / FreelogHS31.iso / PDF / Ghostscript / gs860w32.exe / gs8.60 / lib / pdfopt.bat < prev    next >
DOS Batch File  |  2005-12-29  |  418b  |  24 lines

  1. @echo off 
  2. @rem $Id: pdfopt.bat 6300 2005-12-28 19:56:24Z giles $
  3. @rem Convert PDF to "optimized" form.
  4.  
  5. if %1/==/ goto usage
  6. if %2/==/ goto usage
  7. call gssetgs.bat
  8. echo -q -dNODISPLAY -dSAFER -dDELAYSAFER >_.at
  9. :cp
  10. if %3/==/ goto doit
  11. echo %1 >>_.at
  12. shift
  13. goto cp
  14.  
  15. :doit
  16. %GSC% -q @_.at -- pdfopt.ps %1 %2
  17. if exist _.at erase _.at
  18. goto end
  19.  
  20. :usage
  21. echo "Usage: pdfopt input.pdf output.pdf"
  22.  
  23. :end
  24.