home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 September / PCWorld_2002-09_cd.bin / Software / Vyzkuste / pdfedit / pdf995.exe / pdf995 / res / convert / pdfopt.ps < prev    next >
Encoding:
Text File  |  2002-04-03  |  32.4 KB  |  1,126 lines

  1. %    Copyright (C) 2000, 2001 Aladdin Enterprises.  All rights reserved.
  2. % This software is provided AS-IS with no warranty, either express or
  3. % implied.
  4. % This software is distributed under license and may not be copied,
  5. % modified or distributed except as expressly authorized under the terms
  6. % of the license contained in the file LICENSE in this distribution.
  7. % For more information about licensing, please refer to
  8. % http://www.ghostscript.com/licensing/. For information on
  9. % commercial licensing, go to http://www.artifex.com/licensing/ or
  10. % contact Artifex Software, Inc., 101 Lucas Valley Road #110,
  11. % San Rafael, CA  94903, U.S.A., +1(415)492-9861.
  12.  
  13. % $Id: pdfopt.ps,v 1.10.2.2 2002/04/02 13:57:27 mpsuzuki Exp $
  14. % PDF linearizer ("optimizer").
  15.  
  16. .currentglobal true .setglobal
  17. /pdfoptdict 200 dict def
  18. pdfoptdict begin
  19.  
  20. % This linearizer is designed for simplicity, not for performance.
  21. % See the main program (the last procedure in the file) for comments
  22. % describing the main processing sequence.
  23.  
  24. % ---------------- Utilities ---------------- %
  25.  
  26. % ------ Data structures ------ %
  27.  
  28. % Distinguish dictionaries, arrays, and everything else.
  29. /ifdaelse {        % <obj> <dictproc> <arrayproc> <otherproc> ifdaelse -
  30.   3 index type dup /dicttype eq {
  31.     pop pop pop
  32.   } {
  33.     dup /arraytype ne exch /packedarraytype ne and {
  34.       exch
  35.     } if pop exch pop
  36.   } ifelse exec
  37. } bind def
  38.  
  39. % Implement dynamically growable arrays using a dictionary.
  40. /darray {        % <size> darray <darray>
  41.   dict
  42. } bind def
  43. /dadd {            % <darray> <value> dadd -
  44.   1 index length exch put
  45. } bind def
  46. /daforall {        % <darray> <proc> daforall -
  47.   /exch cvx /get cvx 3 -1 roll /exec cvx 5 packedarray cvx
  48.   0 1 2 index 0 get length 1 sub 4 -1 roll for
  49. } bind def
  50. /dacontents {        % <darray> dacontents <array>
  51.   [ exch { } daforall ]
  52. } bind def
  53. /dacontstring {        % <darray> dacontstring <string>
  54.   0 1 index { exch pop length add } forall string
  55.   dup /NullEncode filter
  56.             % Stack: darray str filter
  57.   3 -1 roll { 1 index exch writestring } daforall
  58.   closefile
  59. } bind def
  60.  
  61. % Force an object, mapping it if it is a reference.
  62. /omforcenew {        % <obj> omforce <obj'> <notseen>
  63.   dup oforce 2 copy eq { pop true } { exch 0 get omapnew exch pop } ifelse
  64. } bind def
  65. /omforce {        % <obj> omforce <obj'>
  66.   omforcenew pop
  67. } bind def
  68. /omget {        % <dict|array> <key> omget <obj>
  69.   get omforce
  70. } bind def
  71. % Visit an entire tree.
  72. /omvisit {        % <obj> omvisit -
  73.   omforcenew {
  74.     { { omvisit omvisit } forall }
  75.     { { omvisit } forall }
  76.     { pop }
  77.     ifdaelse
  78.   } {
  79.     pop
  80.   } ifelse
  81. } bind def
  82. % Visit a tree, stopping at references to Page objects.
  83. % (This is only needed for the OpenAction in the Catalog.)
  84. /omvisitnopage {    % <obj> omvisitnopage -
  85.   dup oforce dup type /dicttype eq {
  86.     /Type .knownget { /Page eq } { false } ifelse
  87.   } {
  88.     pop false
  89.   } ifelse {
  90.     pop        % Page reference
  91.   } {
  92.     omforcenew {
  93.       { { omvisitnopage omvisitnopage } forall }
  94.       { { omvisitnopage } forall }
  95.       { pop }
  96.       ifdaelse
  97.     } {
  98.       pop
  99.     } ifelse
  100.   } ifelse
  101. } bind def
  102.  
  103. % Collect the list of currently mapped object numbers, in order.
  104. /omapped {        % - omapped <obj#s>
  105.   RMap length array RMap {
  106.     2 index 3 1 roll 1 sub exch put
  107.   } forall
  108. } bind def
  109.  
  110. % Collect the list of object numbers passed to omap by a procedure.
  111. /visited {        % <proc> visited <obj#s>
  112.   false currentomap 2 .execn
  113.   omapped exch setomap
  114. } bind def
  115.  
  116. % ------ Output ------ %
  117.  
  118. % Provide a framework for closure-based streams.
  119. .currentglobal false .setglobal
  120. userdict /clostreams 20 dict put    % stream -> [data endproc]
  121. .setglobal
  122. % Create a closure-based stream.
  123. /clostream {        % <data> <proc> <endproc> clostream <stream>
  124.   2 index 3 -1 roll /exec load 3 packedarray cvx
  125.   /NullEncode filter
  126.         % Stack: data endproc stream
  127.   clostreams 1 index 5 -2 roll 2 array astore put
  128. } bind def
  129. % Close a closure-based stream.
  130. /closend {        % <stream> closend <result>
  131.   dup closefile clostreams exch
  132.   2 copy get 3 1 roll undef aload pop exec
  133. } bind def
  134.  
  135. % Implement in-memory output streams.
  136. /msproc {        % <data> <more> <accum> msproc <scratch>
  137.   3 -1 roll dadd { 100 string } { () } ifelse
  138. } bind def
  139. /mstream {        % - mstream <mstream>
  140.   10 darray {msproc} {dacontstring} clostream
  141. } bind def
  142. /mcontents {        % <mstream> mcontents <string>
  143.   closend
  144. } bind def
  145.  
  146. % Implement a stream that only keeps track of its position.
  147. % (All streams should do this, but the PLRM doesn't require it.)
  148. /posbuf 100 string def
  149. /posproc {        % <data> <more> <accum> posproc <scratch>
  150.   0 2 copy get 5 -1 roll length add put
  151.   pop //posbuf
  152. } bind def
  153. /postream {        % - postream <postream>
  154.   [0] {posproc} {0 get} clostream
  155. } bind def
  156. /poslength {        % <postream> poslength <pos>
  157.   closend
  158. } bind def
  159.  
  160. % Implement streams with variable-bit-width data.
  161. % Note that these are dictionary objects, not stream objects.
  162. /bitstream {        % <stream> bitstream <bstream>
  163.   4 dict begin /S exch def /N 8 def /B 0 def
  164.   currentdict end
  165. } bind def
  166. /bitwrite {        % <bstream> <value> <width> bitwrite -
  167.   PDEBUG { ( ) print 1 index =only (:) print dup = } if
  168.   3 -1 roll begin
  169.   N exch sub dup 0 ge {
  170.     /N exch def N bitshift B add
  171.   } {
  172.     2 copy bitshift B add S exch write
  173.             % Stack: value -left
  174.     { 8 add dup 0 ge { exit } if
  175.       2 copy bitshift 255 and S exch write
  176.     } loop
  177.     /N 1 index def bitshift 255 and
  178.   } ifelse /B exch def
  179.   end
  180. } bind def
  181. /bitflush {        % <bstream> bitflush -
  182.   begin N 8 ne { S B write /B 0 def /N 8 def } if end
  183. } bind def
  184.  
  185. % Capture OFile output on the temporary file, in memory, or just as a length.
  186. /totemp {        % <proc> totemp <start> <end>
  187.   TFile fileposition OFile
  188.   /OFile TFile def 3 .execn
  189.   /OFile exch def
  190.   TFile fileposition
  191. } bind def
  192. /tomemory {        % <proc> tomemory <string>
  193.   OFile /OFile mstream def 2 .execn
  194.   OFile mcontents exch /OFile exch def
  195. } bind def
  196. /tolength {        % <proc> tolength <string>
  197.   OFile /OFile postream def 2 .execn
  198.   OFile poslength exch /OFile exch def
  199. } bind def
  200.  
  201. % Copy a range of bytes from TFile to OFile.
  202. /copyrange {        % <start> <end> copybytes -
  203.   TFile 2 index setfileposition
  204.   exch sub 1024 string exch {
  205.         % Stack: buf left
  206.     2 copy 1 index length .min 0 exch getinterval
  207.     TFile exch readstring pop OFile exch writestring
  208.     1 index length sub dup 0 le { exit } if
  209.   } loop pop pop
  210. } bind def
  211.  
  212. % Pad with blanks to a specified position.
  213. /padto {        % <pos> padto -
  214.   OFile fileposition sub
  215.   dup 0 lt {
  216.     (ERROR: file position incorrect by ) print =
  217.     /padto cvx /rangecheck signalerror
  218.   } {
  219.     { ( ) ows } repeat
  220.   } ifelse
  221. } bind def
  222.  
  223. % ---------------- Read objects into memory ---------------- %
  224.  
  225. /touch {        % <object> touch -
  226.   {
  227.     { touch touch } forall
  228.   } {
  229.     dup xcheck {
  230.         % Executable array, must be an indirect object.
  231.       dup 0 get resolved? { pop pop } { oforce touch } ifelse
  232.     } {
  233.       { touch } forall
  234.     } ifelse
  235.   } {
  236.     pop
  237.   } ifdaelse
  238. } bind def
  239.  
  240. % ---------------- Replace references with referents ---------------- %
  241.  
  242. /replaceable? {        % <value> replaceable? <bool>
  243.   dup type /integertype eq exch xcheck not and
  244. } bind def
  245. /replacement {        % <obj|ref> replacement <obj'>
  246.   dup oforce dup replaceable? { exch } if pop
  247. } bind def
  248.  
  249. /replacerefs {        % <object> replacerefs <object>
  250.   {
  251.     dup {
  252.       2 index 2 index undef
  253.       exch replacement exch replacement
  254.       2 index 3 1 roll put
  255.     } forall
  256.   } {
  257.     0 1 2 index length 1 sub {
  258.       1 index exch 2 copy get replacement put
  259.     } for
  260.   } {
  261.   } ifdaelse
  262. } bind def
  263.  
  264. /replaceReferences {    % - replaceReferences -
  265.   Objects { replacerefs pop } lforall
  266.         % Delete replaced objects.
  267.   0 1 Objects llength 1 sub {
  268.     Objects 1 index lget replaceable? {
  269.       PDEBUG { (Deleting ) print dup = } if
  270.       Generations 1 index 0 lput
  271.     } if pop
  272.   } for
  273. } bind def
  274.  
  275. % ---------------- Create new objects ---------------- %
  276.  
  277. /createObjects {    % [<obj>...] createObjects <firstobj#>
  278.   Objects llength dup
  279.   dup 3 index length add growPDFobjects
  280.         % Stack: objects objn objn
  281.   3 1 roll exch {
  282.     Objects 2 index 3 -1 roll lput
  283.     Generations 1 index 1 lput
  284.     1 add
  285.   } forall pop
  286. } bind def
  287.  
  288. % ---------------- Propagate attributes ---------------- %
  289.  
  290. /nopropattrs <<
  291.     % Never propagate these.
  292.   /Type dup /Kids dup /Count dup /Parent dup
  293.     % Handle Resources specially.
  294.   /Resources dup
  295. >> def
  296.  
  297. % Merge Resources.
  298. /mergeres {        % <fromdict> <todict> mergeres -
  299.         % Values in todict take priority over fromdict.
  300.   1 index /Resources .knownget {
  301.     1 index /Resources .knownget {
  302.         % Stack: fromdict todict fromres tores
  303.       exch oforce exch oforce
  304.         % todict's Resources may be shared, so make a copy.
  305.       dup length dict .copydict
  306.       exch {
  307.         % Stack: fromdict todict tores' fromkey fromvalue
  308.     2 index 2 index knownoget {
  309.         % Stack: fromdict todict tores' fromkey fromvalue tovalue
  310.       exch oforce exch
  311.         % ProcSet is an array, other types are dictionaries.
  312.       dup type /dicttype eq {
  313.         % Dictionary, not ProcSet.
  314.         exch dup length 2 index length add dict .copydict .copydict
  315.       } {
  316.         % Array or packed array, ProcSet.
  317.         % Use dictionaries to do the merge.
  318.         dup length 2 index length add dict begin
  319.         exch { dup def } forall { dup def } forall
  320.         mark currentdict end { pop } forall .packtomark
  321.       } ifelse
  322.     } if
  323.     2 index 3 1 roll put
  324.       } forall
  325.     } if /Resources exch put pop
  326.   } {
  327.     pop pop
  328.   } ifelse
  329. } bind def
  330.  
  331. % Merge attributes other than Resources.
  332. /mergeattrs {        % <fromdict> <todict> mergeattrs <fromdict> <todict>
  333.         % Values in todict take priority over fromdict.
  334.   1 index {
  335.         % Stack: fromdict todict fromkey fromvalue
  336.     //nopropattrs 2 index known {
  337.       pop pop
  338.     } {
  339.       2 index 2 index known { pop pop } { 2 index 3 1 roll put } ifelse
  340.     } ifelse
  341.   } forall
  342. } bind def
  343.  
  344. % Propagate attributes to a subtree.
  345. /proppage {        % <attrs> <subtree> proppage -
  346.         % We should be able to tell when we reach a leaf
  347.         % by finding a Type unequal to /Pages.  Unfortunately,
  348.         % some files distributed by Adobe lack the Type key
  349.         % in some of the Pages nodes!  Instead, we check for Kids.
  350.   dup /Kids knownoget {
  351.         % Accumulate inherited values.
  352.     3 1 roll
  353.         % Stack: kids attrs pagesnode
  354.     dup length dict .copydict mergeattrs
  355.     dup 3 1 roll mergeres
  356.     exch { oforce 1 index exch proppage } forall pop
  357.   } {
  358.         % Merge inherited values into the leaf.
  359.     mergeattrs mergeres
  360.   } ifelse
  361. } bind def
  362.  
  363. % Propagate attributes to all pages.
  364. /propagateAttributes {    % - propagateAttributes -
  365.   0 dict Trailer /Root oget /Pages oget proppage
  366. } bind def
  367.  
  368. % ---------------- Identify document-level objects ---------------- %
  369.  
  370. /identifyDocumentObjects {    % - identifyDocumentObjects <obj#s>
  371.   {
  372.     Trailer /Root omget
  373.     dup /PageMode .knownget { omvisit } if
  374.     % Don't allow omvisit to trace references to Page objects.
  375.     dup /OpenAction .knownget { omvisitnopage } if
  376.     Trailer /Encrypt .knownget { omvisit } if
  377.     dup /Threads .knownget {
  378.       omforce { omforce } forall
  379.     } if
  380.     dup /AcroForm .knownget { omvisit } if
  381.     pop
  382.   } visited
  383. } bind def
  384.  
  385. % ---------------- Identify the objects of each page ---------------- %
  386.  
  387. /identifyfont {        % <fontref> identifyfont -
  388.   omforce {
  389.     exch /FontDescriptor eq {
  390.       omforce dup /Flags .knownget { 32 and 0 ne } { false } ifelse
  391.       exch {
  392.     exch dup dup /FontFile eq exch /FontFile2 eq or
  393.     exch /FontFile3 eq or 2 index and {
  394.       fontfiles exch dadd
  395.     } {
  396.       omvisit
  397.     } ifelse
  398.       } forall pop
  399.     } {
  400.       omvisit
  401.     } ifelse
  402.   } forall
  403. } bind def
  404.  
  405. /identifyPageObjects {    % <extra> <page#> identifyPageObjects <obj#s>
  406.   pdffindpageref
  407.   4 dict begin
  408.   /images 10 darray def
  409.   /fontfiles 10 darray def
  410.   {
  411.     omforce
  412.         % Stack: extra page
  413.         % Visit any extra objects if applicable.
  414.     exch omvisit
  415.         % Visit Annots, if any.
  416.         % We don't try to defer the drawing information.
  417.     dup /Annots .knownget { omvisit } if
  418.         % Visit beads.
  419.     dup /B .knownget { omvisit } if
  420.         % Visit resources dictionaries.
  421.     dup /Resources .knownget {
  422.       omforce dup {
  423.         % Visit the first-level Resource dictionaries.
  424.     omforce pop pop
  425.       } forall {
  426.         % Visit the resources themselves.
  427.         % Skip Image XObjects, and FontFile streams if the
  428.         % FontDescriptor Flags have bit 6 set.
  429.         % We don't try to visit the resources in the order in which
  430.         % the Contents stream(s) reference(s) them.
  431.     exch dup /XObject eq {
  432.       pop oforce {
  433.         dup oforce /Subtype get /Image eq {
  434.           images exch dadd
  435.         } {
  436.           omvisit
  437.         } ifelse pop
  438.       } forall
  439.     } {
  440.       /Font eq {
  441.         oforce { identifyfont pop } forall
  442.       } {
  443.         oforce omvisit
  444.       } ifelse
  445.     } ifelse
  446.       } forall
  447.     } if
  448.         % Visit the Contents stream(s).
  449.     dup /Contents .knownget { omvisit } if
  450.         % Visit Image XObjects.  We don't try to visit them in
  451.         % reference order.
  452.     images { omvisit } daforall
  453.         % Visit FontFile streams.  We don't try to visit them in
  454.         % reference order.
  455.     fontfiles { omvisit } daforall
  456.     pop
  457.   } visited end
  458. } bind def
  459.  
  460. % Identify the objects of the first page.
  461. /identifyFirstPageObjects {    % -identifyFirstPageObjects <obj#s>
  462.   Trailer /Root oget null
  463.   1 index /PageMode knownoget {
  464.     /UseOutlines eq {
  465.       1 index /Outlines knownoget { exch pop } if
  466.     } if
  467.   } if exch pop
  468.   1 identifyPageObjects
  469. } bind def
  470.  
  471. % Identify the non-shared objects of the other pages, and the shared objects.
  472. /identifyOtherPageObjects {    % - identifyOtherPageObjects [<pageobj#s> ...]
  473.                 %   <sharedobj#s>
  474.   4 dict begin
  475.   /marks lstring Objects llength lgrowto def
  476.         % Mark document-level and first page objectsw.
  477.   [CatalogNs FirstPageNs] {
  478.     { marks exch 255 lput } forall
  479.   } forall
  480.         % Collect objects of other pages and identify sharing.
  481.   [ 2 1 pdfpagecount { null exch identifyPageObjects } for ]
  482.   dup {
  483.     { marks exch 2 copy lget 1 add 254 .min lput } forall
  484.   } forall
  485.   [ exch {
  486.     [ exch {
  487.       marks 1 index lget 1 ne { pop } if
  488.     } forall ]
  489.   } forall ]
  490.   [ 1 1 marks llength 1 sub {
  491.     marks 1 index lget dup 1 le exch 255 eq or { pop } if
  492.   } for ]
  493.   end
  494. } bind def
  495.  
  496. % Identify objects not associated with any page.
  497. /identifyNonPageObjects {    % - identifyNonPageObjects <obj#s>
  498.   4 dict begin
  499.   /marks lstring Objects llength lgrowto def
  500.   [[[LPDictN PHSN] CatalogNs FirstPageNs SharedNs] OtherPageNs] {
  501.     { { marks exch 1 lput } forall } forall
  502.   } forall
  503.     %****** PUT THESE IN A REASONABLE ORDER ******
  504.   [ 1 1 Objects llength 1 sub {
  505.     marks 1 index lget 0 eq {
  506.       Generations 1 index lget 0 eq { pop } if
  507.     } {
  508.       pop
  509.     } ifelse
  510.   } for ]
  511. } bind def
  512.  
  513. % ---------------- Assign object numbers ---------------- %
  514.  
  515. % Assign object numbers to all objects that will be copied.
  516. % Return the first (translated) object number in the First Page xref table.
  517. /assignObjectNumbers {        % - assignObjectNumbers -
  518.   OtherPageNs { { omap pop } forall } forall
  519.   SharedNs { omap pop } forall
  520.   NonPageNs { omap pop } forall
  521.         % Assign object numbers for the First Page xref table last.
  522.   LPDictN omap    % don't pop, this is the return value
  523.   CatalogNs { omap pop } forall
  524.   FirstPageNs { omap pop } forall
  525.   PHSN omap pop
  526. } bind def
  527.  
  528. % ---------------- Create the LPDict ---------------- %
  529.  
  530. % Create the contents of the LPDict.
  531. /createLPDict {            % <phsstart> <phsend> <firstpageend>
  532.                 %   <xref0start> <filelength> createLPDict -
  533.   LPDict
  534.   dup /Linearized 1 put
  535.   dup /L 4 -1 roll put        % filelength
  536.   dup /T 4 -1 roll put        % xref0start
  537.   dup /E 4 -1 roll put        % firstpageend
  538.   dup /H 5 -2 roll 1 index sub 2 array astore put    % phsstart, end-start
  539.   dup /O 1 pdffindpageref 0 get omap put
  540.   /N pdfpagecount put
  541. } bind def
  542.  
  543. % ---------------- Adjust object positions ---------------- %
  544.  
  545. /adjustObjectPositions {    % <boundary> <deltabelow> <deltaabove>
  546.                 %   adjustObjectPositions -
  547.     % Objects fall into 4 categories: LPDict, PHS, Catalog, and others.
  548.     % We handle the first two as special cases.
  549.   XRef {
  550.         % Stack: bdy below above key loc
  551.     dup 5 index ge { 2 } { 3 } ifelse index add
  552.     XRef 3 1 roll put
  553.   } forall pop pop pop
  554.   XRef LPDictN omap HeaderLength put
  555.   XRef PHSN omap PHSStart put
  556. } bind def
  557.  
  558. % ---------------- Write the output file ---------------- %
  559.  
  560. % Write objects identified by object number.
  561. /writeobjn {        % <obj#> writeobjn -
  562.   Generations 1 index lget pdfwriteobj
  563. } bind def
  564. /writeobjns {        % <obj#s> writeobjns -
  565.   { writeobjn } forall
  566. } bind def
  567.  
  568. % Write a part of the output file.
  569. /writePart {        % <proc> <label> writePart -
  570.   PDEBUG {
  571.     dup print ( start=) print
  572.     OFile { .fileposition } stopped { pop (???) } if =
  573.     2 .execn
  574.     print ( end=) print
  575.     OFile { .fileposition } stopped { pop (???) } if =
  576.   } {
  577.     pop exec
  578.   } ifelse
  579. } bind def
  580.  
  581. % Write the header.
  582. /writePart1 {        % - writePart1 -
  583.   {
  584.     pdfwriteheader
  585.   } (part1) writePart
  586. } bind def
  587.  
  588. % Write the linearization parameters dictionary.
  589. /writePart2 {        % - writePart2 -
  590.   {
  591.     LPDictN writeobjn
  592.   } (part2) writePart
  593. } bind def
  594.  
  595. % Write the First Page xref table and trailer.
  596. % Free variables: FirstPageXN.
  597. /writePart3 {        % <xrefstart> writePart3 -
  598.   {
  599.     FirstPageXN NObjects 1 add 1 index sub pdfwritexref
  600.     Trailer dup length 1 add dict copy
  601.     dup /Size NObjects 1 add put
  602.     dup /Prev 4 -1 roll put
  603.     pdfwritetrailer
  604.     0 pdfwritestartxref
  605.   } (part3) writePart
  606. } bind def
  607.  
  608. % Write the Catalog and other required document-level objects.
  609. % Free variables: CatalogNs.
  610. /writePart4 {        % - writePart4 -
  611.   {
  612.     CatalogNs writeobjns
  613.   } (part4) writePart
  614. } bind def
  615.  
  616. % Write the Primary Hint Stream.
  617. /writePart5 {        % - writePart5 -
  618.   {
  619.     PHSN writeobjn
  620.   } (part5) writePart
  621. } bind def
  622.  
  623. % Write the First Page's objects.
  624. % Free variables: FirstPageNs.
  625. /writePart6 {        % - writePart6 -
  626.   {
  627.     FirstPageNs writeobjns
  628.   } (part6) writePart
  629. } bind def
  630.  
  631. % Write the objects of other pages (Page + non-shared objects).
  632. % Free variables: OtherPageNs.
  633. /writePart7 {        % - writePart7 <lengths>
  634.   {
  635.     [ OtherPageNs {
  636.       OFile fileposition exch
  637.       writeobjns OFile fileposition exch sub
  638.     } forall ]
  639.   } (part7) writePart
  640. } bind def
  641.  
  642. % Write the shared objects of other pages.
  643. % Free variables: SharedNs.
  644. /writePart8 {        % - writePart8 -
  645.   {
  646.     SharedNs writeobjns
  647.   } (part8) writePart
  648. } bind def
  649.  
  650. % Write the other objects not associated with pages.
  651. % Free variables: NonPageNs.
  652. /writePart9 {        % - writePart9 -
  653.   {
  654.     NonPageNs writeobjns
  655.   } (part9) writePart
  656. } bind def
  657.  
  658. % Write the main xref table and trailer.
  659. % Free variables: FirstPageXN.
  660. /writePart11xref {    % writePart11 -
  661.   {
  662.     0 FirstPageXN pdfwritexref
  663.   } (part11xref) writePart
  664. } bind def
  665. /writePart11rest {    % <part3start> writePart11rest -
  666.   {
  667.     << /Size FirstPageXN >> pdfwritetrailer
  668.     pdfwritestartxref
  669.   } (part11rest) writePart
  670. } bind def
  671.  
  672. % ---------------- Write hint tables ---------------- %
  673.  
  674. /bitsneeded {        % <maxvalue> bitsneeded <#bits>
  675.   0 exch { dup 0 eq { pop exit } if exch 1 add exch 2 idiv } loop
  676. } bind def
  677.  
  678. % Find the start and end of objects in the output.
  679. /omstart {        % <obj#> omstart <pos>
  680.   PDEBUG { (start\() print dup =only } if
  681.   omap
  682.   PDEBUG { (=>) print dup =only } if
  683.   XRef exch get
  684.   PDEBUG { (\) = ) print dup = } if
  685. } bind def
  686. /omend {        % <obj#> omend <pos>
  687.     % The end of an object is the start of the next object.
  688.     % The caller must be sure that this object is not the last one
  689.     % in part 9.
  690.   PDEBUG { (end\() print dup =only } if
  691.   omap
  692.   PDEBUG { (=>) print dup =only } if
  693.   1 add
  694.     % Check that the requested object wasn't the last one in part 6:
  695.     % the next object in the output file is the first in part 7.
  696.   PHSN omap 1 index eq { pop 1 } if
  697.   XRef exch get
  698.   PDEBUG { (\) = ) print dup = } if
  699. } bind def
  700. /omlength {        % <obj#> omlength <length>
  701.   dup omend exch omstart sub
  702. } bind def
  703.  
  704. % Find the Contents of a page.
  705. /contentsobjects {    % <pagedict> contentsobjects <firstobj#> <lastobj#>
  706.   /Contents get
  707.   dup oforce dup type /dicttype eq {
  708.     pop dup
  709.   } {
  710.     dup 0 get exch dup length 1 sub get
  711.   } ifelse
  712.   exch 0 get exch 0 get
  713. } bind def
  714. /contentsstart {    % <pagedict> contentsstart <pos>
  715.   contentsobjects pop omstart
  716. } bind def
  717. /contentslength {    % <pagedict> contentslength <length>
  718.   contentsobjects omend exch omstart sub
  719. } bind def
  720.  
  721.  
  722. /writePageOffsetHints {
  723.   PDEBUG { /writePageOffsetHints == } if
  724.   20 dict begin
  725.   /bits OFile bitstream def
  726.   /bwn { bits 3 1 roll bitwrite } def
  727.  
  728.     % Calculate least length of a page.
  729.   FirstPageLength OtherPageLengths { .min } forall
  730.   /minpl exch def
  731.     % Calculate least contents length.
  732.   FirstPageNs 0 get Objects exch lget contentslength
  733.   OtherPageNs { 0 get Objects exch lget contentslength .min } forall
  734.   /mincl exch def
  735.  
  736.     % The Adobe documentation says that all versions of Acrobat
  737.     % require item 8 (mincl) to be zero.  Patch this here.
  738.   /mincl 0 def
  739.  
  740.     % Calculate bits needed to represent greatest page length.
  741.   FirstPageLength OtherPageLengths { .max } forall
  742.   minpl sub bitsneeded /maxplbits exch def
  743.     % Calculate bits needed to represent the greatest Contents length.
  744.   FirstPageNs 0 get Objects exch lget contentslength
  745.   OtherPageNs { 0 get Objects exch lget contentslength .max } forall
  746.   mincl sub bitsneeded /maxclbits exch def
  747.  
  748.     % Per Adobe documentation, Acrobat requires that item 5 (maxplbits)
  749.     % be equal to item 9 (maxclbits).  Set both to the max of the two.
  750.   maxplbits maxclbits .max /maxplbits 1 index def /maxclbits exch def
  751.  
  752.         % 1: Least number of objects in a page:
  753.   FirstPageNs length OtherPageNs { length .min } forall
  754.   /minnop 1 index def 32 bwn
  755.         % 2: Location of first page's Page object:
  756.   FirstPageNs 0 get omap XRef exch get 32 bwn
  757.         % 3: Bits needed to represent greatest # of objects in a page:
  758.   FirstPageNs length OtherPageNs { length .max } forall
  759.   minnop sub bitsneeded /maxnopbits 1 index def 16 bwn
  760.         % 4: Least length of a page:
  761.   minpl 32 bwn
  762.         % 5: Bits needed to represent the greatest page length:
  763.   maxplbits 16 bwn
  764.         % 6: Least start of Contents offset:
  765.   0        % (Acrobat requires that this be 0.)
  766.   /minsco 1 index def 32 bwn
  767.         % 7: Bits needed to represent the greatest start of Contents
  768.         % offset:
  769.   0        % (Acrobat ignores this.)
  770.   /maxscobits 1 index def 16 bwn
  771.         % 8: Least contents length:
  772.   mincl 32 bwn
  773.         % 9: Bits needed to represent the greatest Contents length:
  774.   maxclbits 16 bwn
  775.         % 10: Bits needed to represent the greatest number of Shared
  776.   0        % Object references (we don't report any):
  777.   /maxsorbits 1 index def 16 bwn
  778.         % 11: Bits needed to identify a Shared Object (we don't
  779.   0        % report any):
  780.   /sobits 1 index def 16 bwn
  781.         % 12: Bits needed to represent numerator of fraction (only
  782.   0        % needed for Shared Object references, which we don't report):
  783.   /numfbits 1 index def 16 bwn
  784.         % 13: Denominator of fraction (only needed for Shared Object
  785.         % references, which we don't report):
  786.   255    % arbitrary
  787.   /denf 1 index def 16 bwn
  788.  
  789.         % Number of objects in pages:
  790.   FirstPageNs length minnop sub maxnopbits bwn
  791.   OtherPageNs {
  792.     length minnop sub maxnopbits bwn
  793.   } forall
  794.  
  795.         % Total length of pages in bytes;
  796.   FirstPageLength minpl sub maxplbits bwn
  797.   OtherPageLengths {
  798.     minpl sub maxplbits bwn
  799.   } forall
  800.  
  801.         % Number of shared objects referenced from page:
  802.         % (Currently we don't report this.)
  803.   OtherPageNs length 1 add { 0 maxsorbits bwn } repeat
  804.  
  805.         % Since there are no shared object references,
  806.         % the next two sections are empty.
  807.  
  808.         % Contents offsets:
  809.   [FirstPageNs OtherPageNs aload pop] {
  810.     0 get Objects exch lget contentsstart minsco sub maxscobits bwn
  811.   } forall
  812.  
  813.         % Contents lengths:
  814.   [FirstPageNs OtherPageNs aload pop] {
  815.     0 get Objects exch lget contentslength mincl sub maxclbits bwn
  816.   } forall
  817.  
  818.   bits bitflush end
  819. } bind def
  820.  
  821. /writeSharedObjectHints {
  822.   PDEBUG { /writeSharedObjectHints == } if
  823.   20 dict begin
  824.   /bits OFile bitstream def
  825.   /bwn { bits 3 1 roll bitwrite } def
  826.  
  827.         % Currently we use the Shared Object hint table only for
  828.         % the objects in the first page, which are all treated as
  829.         % "shared" objects.
  830.  
  831.         % Object number of first object in Shared Objects section
  832.         % (not currently used):
  833.   0 32 bwn
  834.         % Location of first object in Shared Objects section
  835.         % (not currently used): If there are no shared objects,
  836.         % Acrobat sets this to the location of linearization
  837.         % parameters object (the very first object).
  838.   { pdfwriteheader } tomemory length 32 bwn
  839.         % Number of Shared Object entries for first page:
  840.   FirstPageNs length 32 bwn
  841.         % Number of Shared Object entries for Shared Objects
  842.         % section (not currently used):
  843.   FirstPageNs length 32 bwn
  844.         % Bits needed to represent the greatest number of objects
  845.         % in a shared object group (always 0, because all groups
  846.         % have only 1 object):
  847.   0 16 bwn
  848.         % Least length of a Shared Object Group in bytes:
  849.   16#7fffffff FirstPageNs { omlength .min } forall
  850.   /minsol 1 index def 32 bwn
  851.         % Bits needed to represent the greatest length of a
  852.         % Shared Object Group:
  853.   0 FirstPageNs { omlength .max } forall
  854.   minsol sub bitsneeded
  855.   /maxsolbits 1 index def 16 bwn
  856.  
  857.         % Lengths of shared object groups:
  858.   FirstPageNs { omlength minsol sub maxsolbits bwn } forall
  859.  
  860.         % MD5 flag:
  861.   0 1 bwn
  862.  
  863.   bits bitflush end
  864. } bind def
  865.  
  866. % ---------------- Main program ---------------- %
  867.  
  868. /tmpprefix (/tmp/) def
  869.  
  870. /pdfOptimize {        % <infile> <outfile> pdfOptimize -
  871.   realtime 3 1 roll
  872.   exch pdfdict begin pdfopenfile dup begin
  873.   40 dict begin
  874.   /IDict exch def
  875.   /OFile exch def
  876.   /starttime exch def
  877.   /now {
  878.     QUIET { pop } { print (, t = ) print realtime starttime sub = flush } ifelse
  879.   } def
  880.   omapinit
  881.   
  882.     % Create and open a temporary file.
  883.  
  884.   null (w) .tempfile /TFile exch def /TFileName exch def
  885.   .setsafe
  886.  
  887.     % Read all objects into memory.
  888.  
  889.   Trailer touch
  890.   (Read objects) now
  891.  
  892.     % Replace indirect references to numbers.  This is needed
  893.     % for the Length of streams, and doesn't hurt anything else.
  894.  
  895.   replaceReferences
  896.   (Replaced references) now
  897.  
  898.     % Create the two new objects: the linearization parameter
  899.     % dictionary, and the Primary Hint Stream.
  900.  
  901.   /LPDict 10 dict def
  902.   /PHS 10 dict cvx def        % executable = stream
  903.   [LPDict PHS] createObjects
  904.   /LPDictN 1 index def 1 add
  905.   /PHSN exch def
  906.   PDEBUG { << /LPDictN LPDictN /PHSN PHSN >> === } if
  907.  
  908.     % Count the number of objects in the output.
  909.  
  910.   0 0 1 Objects llength 1 sub {
  911.     Generations exch lget 0 ne { 1 add } if
  912.   } for
  913.   /NObjects exch def
  914.   QUIET not { NObjects =only ( objects total) = flush } if
  915.  
  916.     % Propagate inherited attributes down the page tree.
  917.  
  918.   propagateAttributes
  919.   (Propagated attributes) now
  920.  
  921.     % Identify the document-level objects (part 4).
  922.  
  923.   identifyDocumentObjects /CatalogNs exch def
  924.   QUIET not { CatalogNs === flush } if
  925.   (Identified Catalog) now
  926.  
  927.       % Identify the first page's objects (part 6),
  928.     % including the Outlines tree if appropriate.
  929.  
  930.   pdfopencache
  931.   /FirstPageNs identifyFirstPageObjects def
  932.   QUIET not { FirstPageNs === flush } if
  933.   (Identified first page) now
  934.  
  935.     % Identify shared vs. non-shared objects for remaining pages
  936.     % (parts 7 and 8).
  937.  
  938.   identifyOtherPageObjects
  939.   /SharedNs exch def
  940.   /OtherPageNs exch def
  941.   QUIET not { OtherPageNs === flush SharedNs === flush } if
  942.   (Identified other pages) now
  943.  
  944.     % Identify objects not associated with any page (part 9).
  945.  
  946.   /NonPageNs identifyNonPageObjects def
  947.   QUIET not { NonPageNs === flush } if
  948.   (Identified non-pages) now
  949.  
  950.     % Assign final object numbers to all the objects.
  951.     % (The omap is currently empty.)
  952.  
  953.   /FirstPageXN assignObjectNumbers def
  954.   (Assigned objects #s) now
  955.  
  956.     % Write the document-level objects (part 4).
  957.  
  958.   { writePart4 } totemp
  959.   /CatalogTempEnd exch def /CatalogTempStart exch def
  960.   (Wrote Catalog) now
  961.  
  962.     % Write the first page's objects (part 6).
  963.  
  964.   { writePart6 } totemp
  965.   /FirstPageTempEnd exch def /FirstPageTempStart exch def
  966.   (Wrote first page) now
  967.  
  968.     % Write the non-shared objects for other pages (part 7).
  969.  
  970.   { writePart7 /OtherPageLengths exch def } totemp
  971.   /OtherPageTempEnd exch def /OtherPageTempStart exch def
  972.   (Wrote other pages) now
  973.  
  974.     % Write the shared objects for other pages (part 8).
  975.  
  976.   { writePart8 } totemp
  977.   /SharedTempEnd exch def /SharedTempStart exch def
  978.   (Wrote shared objects) now
  979.  
  980.     % Write the objects not associated with pages (part 9).
  981.  
  982.   { writePart9 } totemp
  983.   /NonPageTempEnd exch def /NonPageTempStart exch def
  984.  
  985.     % Compute conservative lengths of parts 2,3,5,11 of the output.
  986.     % It's OK for these to be too large, but not too small.
  987.  
  988.   % Make dummy XRef entres for LPDict and PHS.
  989.   XRef LPDictN omap 0 put
  990.   XRef PHSN omap 0 put
  991.  
  992.   /HeaderLength {    % this is exact
  993.     writePart1            % part 1
  994.   } tolength def
  995.   /CatalogLength    % this is exact
  996.     CatalogTempEnd CatalogTempStart sub def    % part 4
  997.   /FirstPageLength    % this is exact
  998.     FirstPageTempEnd FirstPageTempStart sub def    % part 6
  999.   /OtherObjectsLength    % this is exact
  1000.     NonPageTempEnd OtherPageTempStart sub def    % parts 7,8,9
  1001.   /ObjectsLength    % this is exact
  1002.     CatalogLength FirstPageLength add OtherObjectsLength add def
  1003.   /XrefLength {            % part 11
  1004.     % The LPDict must end within the first 1024 bytes,
  1005.     % so the start of the FirstPage xref table can't exceed 1024.
  1006.     writePart11xref 1024 writePart11rest
  1007.   } tolength def
  1008.   /NominalFileLength     % Make a generous allowance for parts 2,3,5.
  1009.     HeaderLength ObjectsLength 3 mul add 10000 add 99999 .max def
  1010.   /FirstPageXrefLength {    % part 3
  1011.     NominalFileLength writePart3
  1012.   } tolength def
  1013.   /LPDictLength {        % part 2
  1014.     NominalFileLength dup 2 mul 2 copy add 1 index dup createLPDict writePart2
  1015.   } tolength def
  1016.  
  1017.     % Compute a few additional values from the above.
  1018.  
  1019.   /XrefBeginLength {
  1020.     (xref\n0 ) ows
  1021.     OFile FirstPageXN write=
  1022.   } tolength def
  1023.   HeaderLength LPDictLength add
  1024.   /FirstPageXrefStart 1 index def
  1025.   FirstPageXrefLength add
  1026.   /CatalogStart 1 index def
  1027.   CatalogLength add        % phsstart
  1028.   /PHSStart exch def
  1029.  
  1030.     % Adjust the object positions ignoring PHS.
  1031.     % (Writing the PHS needs these.)
  1032.  
  1033.   0 0 CatalogStart CatalogTempStart sub adjustObjectPositions
  1034.   % Make a temporary XRef entry for the PHS, for the benefit of omend.
  1035.   XRef PHSN omap CatalogStart put
  1036.   (Adjusted positions) now
  1037.  
  1038.     % Construct the hint tables (part 5).
  1039.  
  1040.   { writePageOffsetHints } totemp
  1041.   pop /PHSTempStart exch def
  1042.   { writeSharedObjectHints } totemp
  1043.   exch PHSTempStart sub PHS /S 3 -1 roll put
  1044.   PHSTempStart sub /PHSTempLength exch def
  1045.   (Wrote hints) now
  1046.  
  1047.   % Prepare to read TFile.
  1048.   TFile closefile
  1049.   /TFile TFileName (r) file def
  1050.  
  1051.   PHS
  1052.     dup /File TFile put
  1053.     dup /FilePosition PHSTempStart put
  1054.     dup /Length PHSTempLength put
  1055.   pop
  1056.   /PHSLength { writePart5 } tolength def
  1057.  
  1058.     % Construct the linearization parameter dictionary (part 2).
  1059.  
  1060.   PHSStart
  1061.   dup PHSLength add        % phsend
  1062.   /FirstPageStart 1 index def
  1063.   dup FirstPageLength add    % firstpageend
  1064.   dup OtherObjectsLength add
  1065.   /XrefStart 1 index def
  1066.   XrefBeginLength add        % xref0start
  1067.   dup XrefBeginLength sub XrefLength add    % fileend
  1068.     % Because of a bug, Acrobat Reader doesn't recognize any file
  1069.     % shorter than 1K as linearized.  Patch this here.
  1070.   1024 .max
  1071.   /FileLength 1 index def
  1072.   createLPDict
  1073.  
  1074.     % Adjust the object positions again, taking the PHS into account.
  1075.  
  1076.   PHSStart 0 PHSLength adjustObjectPositions
  1077.   (Readjusted positions) now
  1078.  
  1079.     % Finally, write the output file.
  1080.  
  1081.   writePart1
  1082.   writePart2
  1083.   FirstPageXrefStart padto
  1084.   XrefStart writePart3
  1085.   CatalogStart padto
  1086.   CatalogTempStart CatalogTempEnd copyrange    % part 4
  1087.   writePart5
  1088.   FirstPageStart padto
  1089.   FirstPageTempStart NonPageTempEnd copyrange    % parts 6,7,8,9
  1090.   % No Overflow Hint Stream (part 10).
  1091.   XrefStart padto
  1092.   writePart11xref
  1093.   { FirstPageXrefStart writePart11rest } tomemory
  1094.   FileLength 1 index length sub padto ows
  1095.   (Wrote output file) now
  1096.  
  1097.     % Wrap up.
  1098.  
  1099.   TFile closefile TFileName deletefile
  1100.   end        % temporary dict
  1101.   end        % IDict
  1102. } bind def
  1103.  
  1104. end            % pdfoptdict
  1105. .setglobal
  1106.  
  1107. % Check for command line arguments.
  1108. [ shellarguments {
  1109.   ] dup length 2 eq {
  1110.     % Load the pdfwrite utilities if necessary.
  1111.     /omapinit where { pop } { (pdfwrite.ps) runlibfile } ifelse
  1112.     save exch
  1113.     aload pop exch (r) file exch (w) file
  1114.     3000000 setvmthreshold
  1115.     pdfoptdict begin pdfOptimize end
  1116.     restore
  1117.   } {
  1118.     (Usage: gs -dNODISPLAY -- pdfopt.ps input.pdf output.pdf) = flush quit
  1119.   } ifelse
  1120. } {
  1121.   pop
  1122. } ifelse
  1123.