I'm generating PDF files with GS and when trying to open the results I get a long warging to the effect that "This file appears to use a new format that this version of Acrobat does not support..." I'm using Reader 6, so I doubt this is the case.
After pressing "OK" the file opens and looks just fine.
I can toggle the compatibility parameter to 1 from 2/3 and everything works fine, but the resulting PDF is 7x larger.
Is there another setting I can play around with to get compatibility AND a smaller file size?
This line makes a smaller file with compatibility issues:
And this line makes a larger file WITHOUT compatibility issues:
Thanks,
Brian
After pressing "OK" the file opens and looks just fine.
I can toggle the compatibility parameter to 1 from 2/3 and everything works fine, but the resulting PDF is 7x larger.
Is there another setting I can play around with to get compatibility AND a smaller file size?
This line makes a smaller file with compatibility issues:
Code:
-q -dSAFER -dNOPAUSE -dBATCH -sDEVICE#pdfwrite -sOutputFile#]+m_outfile +[ -dnodisplay -dCompatibilityLevel#3 -c .setpdfwrite -f ] +m_ifilename
And this line makes a larger file WITHOUT compatibility issues:
Code:
-q -dSAFER -dNOPAUSE -dBATCH -sDEVICE#pdfwrite -sOutputFile#]+m_outfile +[ -dnodisplay -dCompatibilityLevel#1 -c .setpdfwrite -f ] +m_ifilename
Thanks,
Brian