[gs-cvs] rev 9360 - trunk/gs/lib
ken at ghostscript.com
ken at ghostscript.com
Thu Jan 15 07:20:16 PST 2009
Author: ken
Date: 2009-01-15 07:20:15 -0800 (Thu, 15 Jan 2009)
New Revision: 9360
Modified:
trunk/gs/lib/pdfopt.ps
Log:
Fix (pdfopt): Minimum optimised file size changed in Acrobat 9
Details:
bug #690210 "Inconsistent "fast web view' results"
It seems Acrobat 9 will decide that any file less than 4Kb in size is not optimised for fast web view, regardless of content. Previous versions of Acrobat insisted on a minimum of 1Kb.
Expected Differences
None
Modified: trunk/gs/lib/pdfopt.ps
===================================================================
--- trunk/gs/lib/pdfopt.ps 2009-01-15 09:16:00 UTC (rev 9359)
+++ trunk/gs/lib/pdfopt.ps 2009-01-15 15:20:15 UTC (rev 9360)
@@ -1215,7 +1215,7 @@
dup XrefBeginLength sub XrefLength add % fileend
% Because of a bug, Acrobat Reader doesn't recognize any file
% shorter than 1K as linearized. Patch this here.
- 1024 .max
+ 4096 .max
/FileLength 1 index def
createLPDict
More information about the gs-cvs
mailing list