home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 October / Chip_2002-10_cd1.bin / zkuste / pdf / download / gs704w32.exe / gs7.04 / lib / ps2pdf.bat < prev    next >
Encoding:
DOS Batch File  |  2002-01-31  |  529 b   |  19 lines

  1. @echo off
  2. @rem $Id: ps2pdf.bat,v 1.6 2001/06/22 16:09:22 lpd Exp $
  3.  
  4. rem Convert PostScript to PDF 1.2 (Acrobat 3-and-later compatible).
  5. rem The default PDF compatibility level may change in the future:
  6. rem use ps2pdf12 or ps2pdf13 if you want a specific level.
  7.  
  8. rem The current default compatibility level is PDF 1.2.
  9. echo -dCompatibilityLevel#1.2 >_.at
  10. goto bot
  11.  
  12. rem Pass arguments through a file to avoid overflowing the command line.
  13. :top
  14. echo %1 >>_.at
  15. shift
  16. :bot
  17. if not %3/==/ goto top
  18. call ps2pdfxx %1 %2
  19.