home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / Vyzkuste / gs / gs650w32.exe / gs6.50 / lib / pdf_ops.ps < prev    next >
Text File  |  2000-12-05  |  16KB  |  516 lines

  1. %    Copyright (C) 1994, 2000 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of AFPL Ghostscript.
  3. % AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author or
  4. % distributor accepts any responsibility for the consequences of using it, or
  5. % for whether it serves any particular purpose or works at all, unless he or
  6. % she says so in writing.  Refer to the Aladdin Free Public License (the
  7. % "License") for full details.
  8. % Every copy of AFPL Ghostscript must include a copy of the License, normally
  9. % in a plain ASCII text file named PUBLIC.  The License grants you the right
  10. % to copy, modify and redistribute AFPL Ghostscript, but only under certain
  11. % conditions described in the License.  Among other things, the License
  12. % requires that the copyright notice and this notice be preserved on all
  13. % copies.
  14.  
  15. % $Id: pdf_ops.ps,v 1.15 2000/09/19 18:29:11 lpd Exp $
  16. % Definitions for most of the PDF operators.
  17.  
  18. .currentglobal true .setglobal
  19.  
  20. % Define pdfmark.  Don't allow it to be bound in.
  21. % Also don't define it in systemdict, because this leads some Adobe code
  22. % to think this interpreter is a distiller.
  23. % (If this interpreter really is a distiller, don't do this.)
  24. systemdict /pdfmark known not
  25.  { userdict /pdfmark { cleartomark } bind put } if
  26.  
  27. userdict /GS_PDF_ProcSet 127 dict dup begin
  28.  
  29. % ---------------- Abbreviations ---------------- %
  30.  
  31. /bdef { bind def } bind def
  32.  
  33. % ---------------- Graphics state stack ---------------- %
  34.  
  35. % PDF adds a number of parameters to the graphics state.
  36. % We implement this by pushing and popping a dictionary
  37. % each time we do a PDF gsave or grestore.
  38. % The keys in this dictionary are as follows:
  39. %    self            % identifies the dictionary as one of ours
  40. %    ClipRect        % (optional)
  41. %    Show
  42. %    TextSaveMatrix        % matrix at time of BT (iff within BT/ET)
  43. % (The following correspond directly to PDF state parameters.)
  44. %    AlphaIsShape
  45. %    FillConstantAlpha
  46. %    FillColor
  47. %    FillColorSpace
  48. %    FillOverprint
  49. %    SoftMask
  50. %    StrokeConstantAlpha
  51. %    StrokeColor
  52. %    StrokeColorSpace
  53. %    StrokeOverprint
  54. %    TextSpacing
  55. %    TextHScaling
  56. %    Leading
  57. %    TextFont
  58. %    TextLineMatrix
  59. %    TextMatrix
  60. %    TextRise
  61. %    TextRenderingMode
  62. %    WordSpacing
  63.  
  64. /nodict 1 dict def
  65. nodict /self { //nodict } executeonly put
  66. nodict readonly pop
  67.  
  68. /dictbeginpage {    % <initialdict> dictbeginpage -
  69.   //nodict 20 dict .copydict begin { def } forall
  70.   graphicsbeginpage textbeginpage
  71. } bdef
  72. /endpage {    % - endpage -
  73.   showpage end
  74. } bdef
  75.  
  76. /graphicsbeginpage {
  77.   initgraphics
  78.   currentdict /ClipRect .knownget { aload pop rectclip } if
  79.   0 g  0 G  false op  false OP  0 OPM
  80.   1 ca  1 CA  null SMask  false AIS  /Compatible BM  true TK
  81. } bdef
  82.  
  83. /gput        % <value> <key> gput -
  84.  { exch currentdict //nodict eq { /self dup load end 5 dict begin def } if
  85.         % If we're in a Level 1 system, we need to grow the
  86.         % dictionary explicitly.
  87.    currentdict length currentdict maxlength ge %eq
  88.     { currentdict dup length 3 mul 2 idiv 1 add dict .copydict end begin 
  89.     }
  90.    if def
  91.  } bdef
  92.  
  93. /q {
  94.   gsave //nodict begin
  95. } bdef
  96. % Some PDF files have excess Q operators!
  97. /Q {
  98.   currentdict /self .knownget { exec //nodict eq { end grestore } if } if
  99. } bdef
  100.  
  101. % ---------------- Color setting ---------------- %
  102.  
  103. /fcput        % <color> <colorspace> fcput -
  104.  { /FillColorSpace gput /FillColor gput
  105.  } bdef
  106. /scput        % <color> <colorspace> scput -
  107.  { /StrokeColorSpace gput /StrokeColor gput
  108.  } bdef
  109.  
  110. /csdevgray [/DeviceGray] readonly def
  111. /csdevrgb [/DeviceRGB] readonly def
  112. /csdevcmyk [/DeviceCMYK] readonly def
  113. /cspattern [/Pattern] readonly def
  114. /nullpattern1 mark
  115.    /PatternType 1 /PaintType 1 /TilingType 3 /BBox [0 0 0 0]
  116.    /XStep 1 /YStep 1 /PaintProc { }
  117. .dicttomark readonly def
  118. /nullpattern2 nullpattern1 dup length dict copy readonly def
  119.  
  120. % Each entry in the color space dictionary is a procedure of the form
  121. %    <cspace> -proc- <cspace> <initial-color>
  122. /CSdict mark
  123.   /DeviceGray { pop //csdevgray 0 } bind
  124.   /DeviceRGB { pop //csdevrgb [0 0 0] cvx } bind
  125.   /DeviceCMYK { pop //csdevcmyk [0 0 0 1] cvx } bind
  126.   /CIEBasedA { 0 } bind
  127.   /CIEBasedABC { [0 0 0] cvx } bind
  128.   /Separation { 1 } bind
  129.   /DeviceN {    % What is the correct value??
  130.     [ 1 index 1 get length { 1 } repeat ] cvx
  131.   } bind
  132.   /Indexed { 0 } bind
  133.   /Pattern {
  134.     dup type /nametype eq 1 index length 1 eq or {
  135.       pop //cspattern //nullpattern1 matrix makepattern
  136.     } {
  137.       //nullpattern2 matrix makepattern 1 index 1 get csset
  138.         % Stack: patternspace nullpattern basecolor basespace
  139.       pop [ 3 1 roll dup type /arraytype eq { aload pop } if
  140.       counttomark -1 roll ] cvx
  141.     } ifelse
  142.   } bind
  143. .dicttomark readonly def
  144. /csset            % <cspace> csset <color> <cspace>
  145.  { dup dup type /nametype ne { 0 get } if //CSdict exch get exec exch
  146.  } bdef
  147.  
  148. /g { //csdevgray fcput } bdef
  149. /G { //csdevgray scput } bdef
  150. /rg { 3 array astore cvx //csdevrgb fcput } bdef
  151. /RG { 3 array astore cvx //csdevrgb scput } bdef
  152. /k { 4 array astore cvx //csdevcmyk fcput } bdef
  153. /K { 4 array astore cvx //csdevcmyk scput } bdef
  154. /cs { csset fcput } bdef
  155. /CS { csset scput } bdef
  156. /ri { pop } bdef
  157. % We have to break up sc according to the number of operands.
  158. /sc1 { /FillColor gput } bdef
  159. /SC1 { /StrokeColor gput } bdef
  160. % We have to avoid storing into a color array associated with an outer
  161. % gsave level, so we do a kind of "copy on write".
  162. /sc* {
  163.   currentdict /FillColor .knownget {
  164.     astore pop
  165.   } {
  166.     /FillColor load length array astore cvx /FillColor gput
  167.   } ifelse
  168. } bdef
  169. /SC* {
  170.   currentdict /StrokeColor .knownget {
  171.     astore pop
  172.   } {
  173.     /StrokeColor load length array astore cvx /StrokeColor gput
  174.   } ifelse
  175. } bdef
  176.  
  177. % ---------------- Overprint/transparency setting ---------------- %
  178.  
  179. /op { /FillOverprint gput } bdef
  180. /OP { /StrokeOverprint gput } bdef
  181. /OPM {
  182.   /.setoverprintmode where { pop .setoverprintmode } { pop } ifelse
  183. } bdef
  184. /ca { /FillConstantAlpha gput } bdef
  185. /CA { /StrokeConstantAlpha gput } bdef
  186. /SMask { /SoftMask gput } bdef
  187. /AIS { /AlphaIsShape gput } bdef
  188. /BM {
  189.   /.setblendmode where {
  190.     pop [ exch dup type /nametype ne { aload pop } if /Normal ] {
  191.       { .setblendmode } .internalstopped not { exit } if pop
  192.     } forall
  193.   } {
  194.     pop
  195.   } ifelse
  196. } bdef
  197. /TK {
  198.   /.settextknockout where { pop .settextknockout } { pop } ifelse
  199. } bdef
  200.  
  201. % ---------------- Color installation ---------------- %
  202.  
  203. % Establish a given color (and color space) as current.
  204. /.settransparencyparams {    % <alpha> <smask> .settransparencyparams -
  205.   /.begintransparencymask where {
  206.     pop AlphaIsShape {
  207.       1 .setopacityalpha 0 .inittransparencymask exch .setshapealpha 1
  208.     } {
  209.       1 .setshapealpha 1 .inittransparencymask exch .setopacityalpha 0
  210.     } ifelse
  211.     % Set the soft mask by rendering the XObject.  Doing this every time
  212.     % is obviously very inefficient; we'll improve it later.
  213.     .settransparencymask    
  214.   } {
  215.     pop pop
  216.   } ifelse
  217. } bdef
  218. /.settransparencymask {        % <paramdict> <masknum> .settransparencymask -
  219.   exch dup null eq {
  220.     pop .inittransparencymask
  221.   } {
  222.     dup /Draw get exec
  223.   } ifelse
  224. } bdef
  225. % (Non-mask) images must execute setfillblend.
  226. /setfillblend {
  227.   FillOverprint setoverprint
  228.   FillConstantAlpha SoftMask .settransparencyparams
  229. } def
  230. /setfillstate {
  231.   FillColor FillColorSpace setgcolor setfillblend
  232. } def
  233. /setstrokestate {
  234.   StrokeColor StrokeColorSpace setgcolor StrokeOverprint setoverprint
  235.   StrokeConstantAlpha SoftMask .settransparencyparams
  236. } def
  237. /Cdict 15 dict dup begin    % <color...> <colorspace> -proc- -
  238.   /DeviceGray { pop setgray } bdef
  239.   /DeviceRGB { pop setrgbcolor } bdef
  240.   /DeviceCMYK { pop setcmykcolor } bdef
  241.   /CIEBasedA
  242.    { dup currentcolorspace eq { pop } { setcolorspace } ifelse setcolor } bdef
  243.   /CIEBasedABC /CIEBasedA load def
  244.   /CIEBasedDEF /CIEBasedA load def
  245.   /CIEBasedDEFG /CIEBasedA load def
  246.   /Separation /CIEBasedA load def
  247.   /DeviceN /CIEBasedA load def
  248.   /Indexed /CIEBasedA load def
  249.   /Pattern
  250.    { dup currentcolorspace eq { pop } { setcolorspace } ifelse
  251.      dup /Matrix .knownget not { matrix } if
  252.      gsave DefaultMatrix setmatrix makepattern grestore setcolor
  253.    } bdef
  254. end def
  255. /setgcolor    % (null | <color...>) <colorspace> setgcolor -
  256.  { 1 index null eq
  257.     { pop pop }
  258.     { dup 0 get //Cdict exch get exec }
  259.    ifelse
  260.  } bdef
  261. /fsexec        % <fillop|strokeop> fsexec -
  262.  {        % Preserve the current point, if any.
  263.     { currentpoint } stopped
  264.     { $error /newerror false put   cvx exec }
  265.     { 3 -1 roll cvx exec moveto }
  266.    ifelse
  267.  } bdef
  268.  
  269. % ---------------- Path painting and clipping ---------------- %
  270.  
  271. /S { setstrokestate /stroke fsexec } bdef
  272. /f { setfillstate /fill fsexec } bdef
  273. /f* { setfillstate /eofill fsexec } bdef
  274. /n { newpath } bdef        % don't allow n to get bound in
  275. /s { closepath S } bdef
  276. /B { gsave setfillstate fill grestore S } bdef
  277. /b { closepath B } bdef
  278. /B* { gsave setfillstate eofill grestore S } bdef
  279. /b* { closepath B* } bdef
  280.  
  281. % Clipping:
  282.  
  283. /Wdict 4 dict dup begin
  284. /S { gsave setstrokestate stroke grestore n } bdef
  285. /f { gsave setfillstate fill grestore n } bdef
  286. /f* { gsave setfillstate eofill grestore n } bdef
  287. /n { end clip newpath } bdef
  288. end readonly def
  289. /W { //Wdict begin } bdef
  290. /W*dict 4 dict dup begin
  291. Wdict { def } forall
  292. /n { end eoclip newpath } bdef
  293. end readonly def
  294. /W* { //W*dict begin } bdef
  295.  
  296. % ---------------- Text control ---------------- %
  297.  
  298. /textbeginpage
  299.  { /TextSpacing 0 def        % 0 Tc
  300.    /TextLeading 0 def        % 0 TL
  301.    /TextRenderingMode 0 def    % 0 Tr
  302.    /TextRise 0 def        % 0 Ts
  303.    /WordSpacing 0 def        % 0 Tw
  304.    /TextHScaling 1.0 def    % 100 Tz
  305.    /TextFont null def
  306.    /Show { showfirst } def
  307.  } bdef
  308.  
  309. % Contrary to the statement in the PDF manual, BT and ET *can* be nested,
  310. % if the CharProc for a Type 3 font does a BT/ET itself.
  311. % Since we always call the CharProc inside a q/Q, we simply ensure that
  312. % the text state is saved and restored like the rest of the extended
  313. % graphics state.
  314.  
  315. /settextmatrix {
  316.   TextMatrix concat
  317.   TextHScaling 1 ne { TextHScaling 1 scale } if
  318.   TextRise 0 ne { 0 TextRise translate } if
  319.   TextFont dup null eq { pop } { setfont } ifelse
  320. } bdef
  321. /settextstate {
  322.     % The text state can be set even outside BT/ET.
  323.   currentdict /TextSaveMatrix known {
  324.     TextSaveMatrix setmatrix settextmatrix
  325.   } if
  326. } bdef
  327. /settextposition {
  328.         % Update the TextMatrix translation.
  329.   gsave TextSaveMatrix setmatrix
  330.   currentpoint TextMatrix 4 2 getinterval astore pop
  331.         % We would like to do "grestore currentpoint translate"
  332.         % here, but some PDF files set a singular text matrix
  333.         % (0 0 0 0 <x> <y> Tm), so we can't do this.
  334.   TextTempMatrix identmatrix setmatrix currentpoint
  335.   grestore
  336.   TextTempMatrix currentmatrix 4 2 getinterval astore pop
  337.   TextTempMatrix setmatrix
  338. } bdef
  339.  
  340. /BT {
  341.   currentdict /TextLineMatrix .knownget
  342.     { identmatrix pop TextMatrix identmatrix pop }
  343.     { matrix /TextLineMatrix gput matrix /TextMatrix gput }
  344.   ifelse
  345.   { showfirst } /Show gput
  346.   currentdict /TextSaveMatrix .knownget not {
  347.     matrix dup /TextSaveMatrix gput
  348.   } if currentmatrix pop settextmatrix
  349.   matrix /TextTempMatrix gput        % see settextposition
  350. } bdef
  351. /ET {
  352.   TextRenderingMode 4 ge { clip newpath } if
  353.   TextSaveMatrix setmatrix
  354.   currentdict /TextSaveMatrix undef
  355. } bdef
  356. /Tc { /TextSpacing gput { showfirst } /Show gput } bdef
  357. /TL { /TextLeading gput } bdef
  358. /Tr { /TextRenderingMode gput { showfirst } /Show gput } bdef
  359. /Ts { /TextRise gput settextstate } bdef
  360. /Tw { /WordSpacing gput { showfirst } /Show gput } bdef
  361. /Tz { 100 div /TextHScaling gput settextstate} bdef
  362.  
  363. % ---------------- Font control ---------------- %
  364.  
  365. /Tf {        % <font> <scale> Tf -
  366.   dup 1 eq { pop } { scalefont } ifelse
  367.   /TextFont gput settextstate
  368. } bdef
  369.  
  370. % Read a CFF font.
  371. /FRD        % <resname> <file> FRD -
  372.  { /FontSetInit /ProcSet findresource begin true ReadData
  373.  } bdef
  374.  
  375. % Copy a font, removing its FID.  If changed is true, also remove
  376. % the UniqueID and XUID, if any.  If the original dictionary doesn't have
  377. % the keys being removed, don't copy it.
  378. /.copyfontdict        % <font> <changed> .copyfontdict <dict>
  379.  { 1 index /FID known
  380.    1 index { 2 index /UniqueID known or 2 index /XUID known or } if
  381.     {        % We add 1 to the length just in case the original
  382.         % didn't have a FID.
  383.       exch dup length 1 add dict exch
  384.        {        % Stack: changed newfont key value
  385.      1 index /FID eq 4 index
  386.       { 2 index /UniqueID eq or 2 index /XUID eq or }
  387.      if not { 3 copy put } if pop pop
  388.        }
  389.       forall exch
  390.     }
  391.    if pop
  392.  } bdef
  393.  
  394. % Insert a new Encoding or Metrics into a font if necessary.
  395. % Return a possibly updated font, and a flag to indicate whether
  396. % the font was actually copied.
  397. /.updatefontmetrics {    % <font> <Metrics|null> .updatefontmetrics
  398.             %   <font'> <copied>
  399.   dup null ne {
  400.     exch true .copyfontdict dup /Metrics 4 -1 roll put true
  401.   } {
  402.     pop false
  403.   } ifelse
  404. } bdef
  405. /.updatefontencoding {    % <font> <Encoding|null> .updatefontencoding
  406.             %   <font'> <copied>
  407.   dup null ne { dup 2 index /Encoding get ne } { false } ifelse {
  408.     exch false .copyfontdict dup /Encoding 4 -1 roll put true
  409.   } {
  410.     pop false
  411.   } ifelse
  412. } bdef
  413. /.updatefont {        % <font> <Encoding|null> <Metrics|null> .updatefont
  414.             %   <font'> <copied>
  415.   3 -1 roll exch .updatefontmetrics
  416.             % Stack: enc|null font' copied
  417.   3 1 roll exch .updatefontencoding 3 -1 roll or
  418. } bdef
  419.  
  420. % ---------------- Text positioning ---------------- %
  421.  
  422. /Td {
  423.   TextLineMatrix transform TextLineMatrix 4 2 getinterval astore pop
  424.   TextLineMatrix TextMatrix copy pop settextstate
  425. } bdef
  426. /TD { dup neg /TextLeading gput Td } bdef
  427. /T* { 0 TextLeading neg Td } bdef
  428. /Tm {
  429.   TextLineMatrix astore TextMatrix copy pop settextstate
  430. } bdef
  431.  
  432. % ---------------- Text painting ---------------- %
  433.  
  434. /textrenderingprocs [        % (0 is handled specially)
  435.     % Painting-only modes
  436.    { tf } { tS } { tB } { tn }
  437.     % Clipping modes
  438.    { gsave tf grestore tW }
  439.    { gsave tS grestore tW }
  440.    { gsave tB grestore tW }
  441.    { tW }
  442. ] readonly def
  443. /setshowstate
  444.  { WordSpacing 0 eq TextSpacing 0 eq and
  445.     { TextRenderingMode 0 eq
  446.        { { setfillstate show } }
  447.        { { false charpath textrenderingprocs TextRenderingMode get exec } }
  448.       ifelse
  449.     }
  450.     { TextRenderingMode 0 eq
  451.        { WordSpacing 0 eq
  452.           { { setfillstate TextSpacing exch 0 exch ashow } }
  453.       { TextSpacing 0 eq
  454.          { { setfillstate WordSpacing exch 0 exch 32 exch widthshow } }
  455.          { { setfillstate WordSpacing exch TextSpacing exch 0 32 4 2 roll 0 exch awidthshow } }
  456.         ifelse
  457.       }
  458.      ifelse
  459.        }
  460.        { { WordSpacing TextSpacing
  461.             % Implement the combination of t3 and false charpath.
  462.             % Note that we must use cshow for this, because we
  463.             % can't parse multi-byte strings any other way.
  464.             % Stack: string xword xchar
  465.         { pop pop (x) dup 0 3 index put false charpath
  466.             % Stack: xword xchar ccode
  467.           3 copy 32 eq { add } { exch pop } ifelse 0 rmoveto pop
  468.         }
  469.        4 -1 roll cshow pop pop
  470.        textrenderingprocs TextRenderingMode get exec
  471.      }
  472.        }
  473.       ifelse
  474.     }
  475.    ifelse /Show gput
  476.  } bdef
  477. /showfirst { setshowstate Show } def
  478.  
  479. /Tj {
  480.   0 0 moveto Show settextposition
  481. } bdef
  482. /' { T* Tj } bdef
  483. /" { exch Tc exch Tw T* Tj } bdef
  484. /TJ {
  485.   0 0 moveto {
  486.     dup type /stringtype eq {
  487.       Show
  488.     } { -1000 div
  489.       currentfont /ScaleMatrix .knownget { 0 get mul } if
  490.       0 rmoveto
  491.     } ifelse
  492.   } forall settextposition
  493. } bdef
  494.  
  495. /tf { setfillstate currentpoint fill moveto } bdef
  496. /tn { currentpoint newpath moveto } bdef
  497. % For stroking characters, temporarily restore the graphics CTM so that
  498. % the line width will be transformed properly.
  499. /Tmatrix matrix def
  500. /tS
  501.  { setstrokestate
  502.    currentpoint //Tmatrix currentmatrix TextSaveMatrix setmatrix stroke
  503.    setmatrix moveto
  504.  } bdef
  505. /tB { gsave tf grestore tS } bdef
  506. % This does the wrong thing if there have been multiple text operations
  507. % within a single BT/ET pair, but it's a start.
  508. /tW { } bdef
  509.  
  510. end readonly put        % GS_PDF_ProcSet
  511.  
  512. .setglobal
  513.