PostScript Resources

Printing

PostScript Utilities

PSUtils (alternate site), is a useful collection of PostScript manipulation routines. Some examples of what you can do include:

Merging PostScript Files

  1. Add the path to gswin32c. For Ghostscript version 5.50, type
    path=%path%;c:\gstools\gs5.50.
  2. To merge input1.ps and input2.ps to output.ps, type
    gswin32c -dNOPAUSE -sDEVICE=pswrite -dBATCH -sOutputFile=output.ps input1.ps input2.ps

PostScript to Acrobat PDF

  1. Full instructions are contained in the file ps2pdf.htm, included with GhostView/GhostScript. For Ghostscript version 5.50, the full path is C:\gstools\gs5.50\Ps2pdf.htm.
  2. Add the path to ps2pdf and gswin32c. For Ghostscript version 5.50, type
    path=%path%;c:\gstools\gs5.50.
  3. To convert myfile.ps to myfile.pdf type
    ps2pdf myfile.ps myfile.pdf
  4. Check that you can read myfile.pdf using Acrobat Reader.

JPEG to PostScript

Other Resources

Back