Postscript to PDF Conversion

The routine that uses Ghostscript to convert postscript output into PDF uses the following 12 parameters

  1. ps2pdf (name of GS instance, always ignored)

  2. -dNOPAUSE

  3. -dBATCH

  4. -dSAFER

  5. -sDEVICE=pdfwrite

  6. -dAutoFilterColorImages=false

  7. -dColorImageFilter=/FlateEncode

  8. -sOutputFile=[postscript file path]

  9. -c

  10. setpdfwrite

  11. -f

  12. [PDF output file path]

where:

See the Ghostscript Usage documentation for details on the above parameters.