I’ve a unix server (mac osx in fact) which transform actually PS files to PDF files. It does this through ps2pdf, with those parameters:
ps2pdf14 \
-dPDFSETTINGS=/prepress \
-dEPSCrop \
-dColorImageResolution=72 \
-dColorConversionStrategy=/LeaveColorUnchanged \
INPUT_FILE \
OUTPUT_FILE
But now I’ve to adapt this script to have a PDF file as input instead as PS.
So I guess that ps2pdf will not work anymore, and I need something which can reduce the quality of the pdf.
Do you know a tool like this?
The
ps2pdf14script just runs theps2pdfwrscript with-dCompatibilityLevel=1.4, which in turn usesgswith various parameters. You can examine that script to see the options.You could run
gsdirectly, putting in the various options added by the scripts and your own-doptions (which are passed directly togs). I.e. try: