home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Support / gs704w32.exe / gs7.04 / lib / gs_init.ps < prev    next >
Text File  |  2002-01-31  |  62KB  |  1,877 lines

  1. % (C) 1989, 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: gs_init.ps,v 1.40.2.4 2002/02/01 03:25:45 raph Exp $
  16. % Initialization file for the interpreter.
  17. % When this is run, systemdict is still writable.
  18.  
  19. % Comment lines of the form
  20. %    %% Replace <n> <file(s)>
  21. % indicate places where the next <n> lines should be replaced by
  22. % the contents of <file(s)>, when creating a single merged init file.
  23.  
  24. % The interpreter can call out to PostScript code.  All procedures
  25. % called in this way, and no other procedures defined in these
  26. % initialization files, have names that begin with %, e.g.,
  27. % (%Type1BuildChar) cvn.
  28.  
  29. % Check the interpreter revision.  NOTE: the interpreter code requires
  30. % that the first non-comment token in this file be an integer.
  31. 704
  32. dup revision ne
  33.  { (gs: Interpreter revision \() print revision 10 string cvs print
  34.    (\) does not match gs_init.ps revision \() print 10 string cvs print
  35.    (\).\n) print flush null 1 .quit
  36.  }
  37. if pop
  38.  
  39. % Acquire userdict, and set its length if necessary.
  40. /userdict where
  41.  { pop userdict maxlength 0 eq }
  42.  { true }
  43. ifelse
  44. systemdict exch
  45.  {        % userdict wasn't already set up by iinit.c.
  46.    dup /userdict
  47.    currentdict dup 200 .setmaxlength        % userdict
  48.    .forceput            % userdict is local, systemdict is global
  49.  }
  50. if begin
  51.  
  52. % Define dummy local/global operators if needed.
  53. systemdict /.setglobal known
  54.  { true .setglobal
  55.  }
  56.  { /.setglobal { pop } bind def
  57.    /.currentglobal { false } bind def
  58.    /.gcheck { pop false } bind def
  59.  }
  60. ifelse
  61.  
  62. % Define .languagelevel if needed.
  63. systemdict /.languagelevel known not { /.languagelevel 1 def } if
  64.  
  65. % Optionally choose a default paper size other than U.S. letter.
  66. % (a4) /PAPERSIZE where { pop pop } { /PAPERSIZE exch def } ifelse
  67.  
  68. % Turn on array packing for the rest of initialization.
  69. true setpacking
  70.  
  71. % Define the old MS-DOS EOF character as a no-op.
  72. % This is a hack to get around the absurd habit of MS-DOS editors
  73. % of adding an EOF character at the end of the file.
  74. <1a> cvn { } def
  75.  
  76. % Acquire the debugging flags.
  77. currentdict /DEBUG known   /DEBUG exch def
  78.   /VMDEBUG
  79.     DEBUG {{print mark
  80.             systemdict /level2dict known
  81.          { .currentglobal dup false .setglobal vmstatus
  82.            true .setglobal vmstatus 3 -1 roll pop
  83.            6 -2 roll pop .setglobal
  84.          }
  85.          { vmstatus 3 -1 roll pop
  86.          }
  87.         ifelse usertime 16#fffff and counttomark
  88.           { ( ) print (           ) cvs print }
  89.         repeat pop
  90.         ( ) print systemdict length (    ) cvs print
  91.         ( ) print countdictstack (  ) cvs print
  92.         ( <) print count (    ) cvs print (>\n) print flush
  93.       }}
  94.       {{pop
  95.       }}
  96.      ifelse
  97.   def
  98.  
  99. currentdict /BATCH known   /BATCH exch def
  100. currentdict /DELAYBIND known   /DELAYBIND exch def
  101. currentdict /DISKFONTS known   /DISKFONTS exch def
  102. currentdict /DOINTERPOLATE .knownget { /INTERPOLATE exch def } if
  103. currentdict /ESTACKPRINT known   /ESTACKPRINT exch def
  104. currentdict /FAKEFONTS known   /FAKEFONTS exch def
  105. currentdict /FIXEDMEDIA known   /FIXEDMEDIA exch def
  106. currentdict /FIXEDRESOLUTION known   /FIXEDRESOLUTION exch def
  107. currentdict /LOCALFONTS known   /LOCALFONTS exch def
  108. currentdict /NOBIND known   /NOBIND exch def
  109. /.bind /bind load def
  110. NOBIND { /bind { } def } if
  111. currentdict /NOCACHE known   /NOCACHE exch def
  112. currentdict /NOCCFONTS known   /NOCCFONTS exch def
  113. currentdict /NOCIE known   /NOCIE exch def
  114. currentdict /NODISPLAY known   not /DISPLAYING exch def
  115. currentdict /NOFONTMAP known   /NOFONTMAP exch def
  116. currentdict /NOFONTPATH known   /NOFONTPATH exch def
  117. currentdict /NOGC known   /NOGC exch def
  118. currentdict /NOINTERPOLATE .knownget { /INTERPOLATE exch not def } if
  119. currentdict /NOPAGEPROMPT known   /NOPAGEPROMPT exch def
  120. currentdict /NOPAUSE known   /NOPAUSE exch def
  121. currentdict /NOPLATFONTS known   /NOPLATFONTS exch def
  122. currentdict /NOPROMPT known   /NOPROMPT exch def
  123. % The default value of ORIENT1 is true, not false.
  124. currentdict /ORIENT1 known not { /ORIENT1 true def } if
  125. currentdict /OSTACKPRINT known   /OSTACKPRINT exch def
  126. currentdict /OUTPUTFILE known    % obsolete
  127.  { /OutputFile /OUTPUTFILE load def
  128.    currentdict /OUTPUTFILE .undef
  129.  } if
  130. currentdict /QUIET known   /QUIET exch def
  131. % DELAYSAFER is effectively the same as newer NOSAFER
  132. currentdict /DELAYSAFER known { /DELAYSAFER true def /NOSAFER true def } if
  133. currentdict /PARANOIDSAFER known /PARANOIDSAFER exch def
  134. /SAFER currentdict /NOSAFER known {
  135.   false
  136. } {
  137.   currentdict /SAFER known PARANOIDSAFER or
  138. }
  139. ifelse def
  140. currentdict /SHORTERRORS known   /SHORTERRORS exch def
  141. currentdict /STRICT known   /STRICT exch def
  142. currentdict /TTYPAUSE known   /TTYPAUSE exch def
  143. currentdict /WRITESYSTEMDICT known   /WRITESYSTEMDICT exch def
  144.  
  145. % Acquire environment variables.
  146. currentdict /DEVICE known not
  147.  { (GS_DEVICE) getenv { /DEVICE exch def } if } if
  148.  
  149. (START) VMDEBUG
  150.  
  151. % Open the standard files, so they will be open at the outermost save level.
  152. (%stdin) (r) file pop
  153. (%stdout) (w) file pop
  154. (%stderr) (w) file pop
  155.  
  156. /.currentuserparams where {
  157.   pop mark
  158.     % The Adobe implementations appear to have very large maximum
  159.     % stack sizes.  This turns out to actually make a difference,
  160.     % since some badly-behaved files include extremely long procedures,
  161.     % or construct huge arrays on the operand stack.
  162.     % We reset the stack sizes now so that we don't have to worry
  163.     % about overflowing the (rather small) built-in stack sizes
  164.     % during initialization.
  165.   /MaxDictStack 500
  166.   /MaxExecStack 5000
  167.   /MaxOpStack 50000
  168.   .dicttomark .setuserparams
  169. } if
  170.  
  171. % Define a procedure for skipping over an unneeded section of code.
  172. % This avoids allocating space for the skipped procedures.
  173. % We can't use readline, because that imposes a line length limit.
  174. /.skipeof    % <string> .skipeof -
  175.  { currentfile exch 1 exch .subfiledecode flushfile
  176.  } .bind def
  177.  
  178. % Define procedures to assist users who don't read the documentation.
  179. userdict begin
  180. /help
  181.  { (Enter PostScript commands.  '(filename) run' runs a file, 'quit' exits.\n)
  182.    print flush
  183.  } .bind def
  184. end
  185.  
  186. % Define =string, which is used by some PostScript programs even though
  187. % it isn't documented anywhere.
  188. % Put it in userdict so that each context can have its own copy.
  189. userdict /=string 256 string put
  190.  
  191. % Print the greeting.
  192.  
  193. /printgreeting
  194.  { mark
  195.    product (Ghostscript) search
  196.     { pop pop pop
  197.       (This software comes with NO WARRANTY: see the file PUBLIC for details.\n)
  198.     }
  199.     { pop
  200.     }
  201.    ifelse
  202.    (\n) copyright
  203.    (\)\n) revisiondate 10 mod revisiondate 10 idiv 10 mod (-)
  204.    revisiondate 100 idiv 10 mod revisiondate 1000 idiv 10 mod (-)
  205.    revisiondate 10000 idiv ( \()
  206.    revision 10 mod
  207.    revision 100 mod 10 idiv (.)
  208.    revision 100 idiv ( )
  209.    product
  210.    counttomark
  211.     { (%stdout) (w) file exch 0 .writecvp
  212.     } repeat pop
  213.  } .bind def
  214.  
  215. QUIET not { printgreeting flush } if
  216.  
  217. % Define a special version of def for making operator procedures.
  218. /obind {    % <name> <proc> obind <name> <oper>
  219.   1 index exch .makeoperator
  220. } .bind def
  221. /odef {        % <name> <proc> odef -
  222.   1 index exch .makeoperator def
  223. } .bind def
  224.  
  225. % Define a special version of def for storing local objects into global
  226. % dictionaries.  Like .forceput, this exists only during initialization.
  227. /.forcedef {        % <key> <value> .forcedef -
  228.   currentdict 3 1 roll .forceput
  229. } .bind odef
  230.  
  231. % Define procedures for accessing variables in systemdict and userdict
  232. % regardless of the contents of the dictionary stack.
  233. /.systemvar {        % <name> .systemvar <value>
  234.   //systemdict exch get
  235. } .bind odef
  236. /.userdict {        % - .userdict <dict>
  237.   /userdict .systemvar
  238. } .bind odef
  239. /.uservar {        % <name> .uservar <value>
  240.   .userdict exch get
  241. } .bind odef
  242.  
  243. % If we're delaying binding, remember everything that needs to be bound later.
  244. DELAYBIND NOBIND not and
  245.  { .currentglobal false .setglobal
  246.    systemdict /.delaybind 1500 array .forceput
  247.    .setglobal
  248.    userdict /.delaycount 0 put
  249.     % When we've done the delayed bind, we want to stop saving.
  250.     % Detect this by the disappearance of .delaybind.
  251.    /bind
  252.     { /.delaybind .systemvar dup length 0 ne
  253.        { .delaycount 2 index put
  254.          .userdict /.delaycount .delaycount 1 add put
  255.        }
  256.        { pop .bind
  257.        }
  258.       ifelse
  259.     } .bind def
  260.  } if
  261.  
  262. %**************** BACKWARD COMPATIBILITY ****************
  263. /hwsizedict mark /HWSize null .dicttomark readonly def
  264. /copyscanlines {        % <device> <y> <string> copyscanlines <substr>
  265.   0 3 1 roll 3 index //hwsizedict .getdeviceparams
  266.   exch pop exch pop aload pop 3 2 roll
  267.   0 exch null exch .getbitsrect exch pop
  268. } bind odef
  269. currentdict /hwsizedict .undef
  270. /getdeviceprops
  271.  { null .getdeviceparams
  272.  } bind odef
  273. /.putdeviceprops
  274.  { null true counttomark 1 add 3 roll .putdeviceparams
  275.    dup type /booleantype ne
  276.     { dup mark eq { /unknown /rangecheck } if
  277.       counttomark 4 add 1 roll cleartomark pop pop pop
  278.       /.putdeviceprops load exch signalerror
  279.     }
  280.    if
  281.  } bind odef
  282. /.currentfilladjust { .currentfilladjust2 pop } bind odef
  283. /.setfilladjust { dup .setfilladjust2 } bind odef
  284. /.writecvs { 0 .writecvp } bind odef
  285. %**************** DEPRECATED PROCEDURES ****************
  286. %**************** DO NOT USE THESE IN NEW CODE ****************
  287. /max { .max } bind def        % use .max instead
  288. /min { .min } bind def        % use .min instead
  289. /unread /.unread load def    % use .peekstring instead
  290. %**************** END OF BACKWARD COMPATIBILITY SECTION ****************
  291.  
  292. % Define predefined procedures substituting for operators,
  293. % in alphabetical order.
  294.  
  295. userdict /#copies 1 put
  296. % Adobe implementations don't accept /[ or /], so we don't either.
  297. ([) cvn
  298.     /mark load def
  299. (]) cvn
  300.     {counttomark array astore exch pop} odef
  301. % .beginpage is redefined if setpagedevice is present.
  302. /.beginpage { } odef
  303. % In LanguageLevel 3, copypage erases the page.
  304. /copypage {
  305.     .languagelevel 3 ge
  306.     dup { 0 } { 1 } ifelse .endpage {
  307.       .currentnumcopies 1 index .outputpage
  308.       (>>copypage, press <return> to continue<<\n) .confirm
  309.       dup { erasepage } if
  310.     } if pop .beginpage
  311. } odef
  312. /currentmatrix {
  313.     .currentmatrix 6 index astore pop
  314. } odef
  315. % .currentnumcopies is redefined in Level 2.
  316. /.currentnumcopies { #copies } odef
  317. /setcolorscreen where { pop        % not in all Level 1 configurations
  318.    /currentcolorscreen
  319.     { .currenthalftone
  320.        { { 60 exch 0 exch 3 copy 6 copy }    % halftone - not possible
  321.          { 3 copy 6 copy }            % screen
  322.          { }                % colorscreen
  323.        }
  324.       exch get exec
  325.     } odef
  326. } if
  327. /currentscreen
  328.     { .currenthalftone
  329.        { { 60 exch 0 exch }            % halftone - not possible
  330.          { }                % screen
  331.          { 12 3 roll 9 { pop } repeat }    % colorscreen
  332.        }
  333.       exch get exec
  334.     } odef
  335. /.echo /echo load def
  336. userdict /.echo.mode true put
  337. /echo    {dup /.echo.mode exch store .echo} odef
  338. /eexec {
  339.     % Rebind .currentresourcefile if it is the source for the eexec.
  340.   dup 55665 //filterdict /eexecDecode get exec
  341.   cvx exch .currentresourcefile eq
  342.   //systemdict begin { {exec} .execasresource } { exec } ifelse
  343.     % Only pop systemdict if it is still the top element,
  344.     % because this is apparently what Adobe interpreters do.
  345.   currentdict //systemdict eq { end } if
  346. } odef
  347. % .endpage is redefined if setpagedevice is present.
  348. /.endpage { 2 ne } odef
  349. % erasepage mustn't use gsave/grestore, because we call it before
  350. % the graphics state stack has been fully initialized.
  351. /erasepage
  352.     { /currentcolor where
  353.        { pop currentcolor currentcolorspace { setcolorspace setcolor } }
  354.        { /currentcmykcolor where
  355.           { pop currentcmykcolor { setcmykcolor } }
  356.           { currentrgbcolor { setrgbcolor } }
  357.          ifelse
  358.        }
  359.       ifelse 1 setgray .fillpage exec
  360.     } odef
  361. % To satisfy the Genoa FTS, executive must be a procedure, not an operator.
  362. /executive
  363.     { { prompt
  364.          { (%statementedit) (r) file } stopped
  365.          { pop pop $error /errorname get /undefinedfilename eq
  366.         { .clearerror exit } if        % EOF
  367.            handleerror null        % ioerror??
  368.          }
  369.         if
  370.         cvx { .runexec } execute
  371.       } loop
  372.     } bind def
  373. /filter
  374.     { //filterdict 1 index .knownget
  375.        { exch pop exec }
  376.        { /filter load /undefined signalerror }
  377.       ifelse
  378.     } odef
  379. /handleerror
  380.     { /errordict .systemvar /handleerror get exec } bind def
  381. /identmatrix [1.0 0.0 0.0 1.0 0.0 0.0] readonly def
  382. /identmatrix
  383.     { dup 0 //identmatrix putinterval } odef
  384. /languagelevel 1 def        % gs_lev2.ps may change this
  385. /makeimagedevice { false makewordimagedevice } odef
  386. /matrix    { 6 array identmatrix } odef
  387. /pathbbox
  388.     { false .pathbbox
  389.     } odef
  390. % .promptmsg is redefined if the interpreter includes readline support.
  391. /.promptmsg {
  392.     (GS) print
  393.     count 0 ne { (<) print count =only } if
  394.     (>) print flush
  395. } bind def
  396. /prompt    { flush flushpage NOPROMPT not { .promptmsg } if } bind def
  397. /pstack    { 0 1 count 3 sub { index == } for } bind def
  398. /putdeviceprops
  399.     { .putdeviceprops { erasepage } if } odef
  400. /quit    { /quit load 0 .quit } odef
  401. /run    { dup type /filetype ne { (r) file } if
  402.         % We must close the file when execution terminates,
  403.         % regardless of the state of the stack,
  404.         % and then propagate an error, if any.
  405.       cvx .runexec
  406.     } odef
  407. % Execute a file.
  408. % Level 2 uses 2 .stop to clear the e-stack for a successful startjob:
  409. % we detect that here, since we need to handle this even if we start out
  410. % without job control in effect.
  411. %
  412. % What we push on the e-stack is the following to be executed in this order:
  413. %    <lit-file|fileproc> .runexec1 <lit-file|fileproc> .runexec2
  414. /.runexec1 {        % <file|fileproc> .runexec1 -
  415.   dup type /filetype ne { cvx exec } if
  416.   cvx null 2 .stopped
  417.     % If we got back here from a startjob, just keep going.
  418.     % startjob replaces the null on the o-stack with a procedure
  419.     % to be executed when we get back here.
  420.   dup null ne { exec true } { pop false } ifelse
  421. } bind def
  422. /.runexec2 {        % <continue> <file|fileproc> .runexec2 -
  423.   exch {
  424.     .runexec
  425.   } {
  426.     dup type /filetype ne { cvx exec } if
  427.     closefile
  428.   } ifelse
  429. } bind def
  430. /.runexec {        % <file|fileproc> .runexec -
  431.   cvlit /.runexec1 cvx 1 index /.runexec2 cvx 4 .execn
  432. } bind def
  433. % The following is only for compatibility with Adobe interpreters.
  434. /setdash {
  435.     1 index length 11 gt { /setdash load /limitcheck signalerror } if
  436.     //setdash
  437. } odef
  438. /setdevice
  439.     { .setdevice { erasepage } if } odef
  440. /setlinecap {
  441.     dup 2 gt { /setlinecap load /rangecheck signalerror } if
  442.     .setlinecap
  443. } odef
  444. /setlinejoin {
  445.     dup 2 gt { /setlinejoin load /rangecheck signalerror } if
  446.     .setlinejoin
  447. } odef
  448. /setmatrix {
  449.     dup aload pop .setmatrix pop
  450. } odef
  451. /showpage {
  452.     0 .endpage .doneshowpage {
  453.       .currentnumcopies true .outputpage
  454.       (>>showpage, press <return> to continue<<\n) .confirm
  455.       erasepage
  456.     } if initgraphics .beginpage
  457. } odef
  458. % Code output by Adobe Illustrator relies on the fact that
  459. % `stack' is a procedure, not an operator!!!
  460. /stack    { 0 1 count 3 sub { index = } for } bind def
  461. /start    { BATCH { null 0 .quit } { executive } ifelse } def
  462. % Internal uses of stopped that aren't going to do a stop if an error occurs
  463. % should use .internalstopped to avoid setting newerror et al.
  464. /.internalstopped { null 1 .stopped null ne } bind def
  465. /store {    % Don't alter operands before completing.
  466.     1 index where { 2 index 2 index put pop pop } { def } ifelse
  467. } odef
  468. /.typenames mark .typenames counttomark packedarray exch pop def
  469. /type {
  470.     //.typenames .type
  471. } odef
  472. currentdict /.typenames .undef
  473. % When running in Level 1 mode, this interpreter is supposed to be
  474. % compatible with PostScript "version" 54.0 (I think).
  475. /version (54.0) readonly def
  476. /.wheredict 10 dict def
  477. /.where /where load def
  478. /where {
  479.     //.wheredict 1 index .knownget { exec } { .where } ifelse
  480. } odef
  481.  
  482. % internaldict is defined in systemdict, but the dictionary is allocated
  483. % in local VM.  However, the procedure must be global, since it is an
  484. % "operator" and must be bind-able into global procedures.
  485. % We make a procedure for creating it, since we must create a new one
  486. % for each context with private local VM.
  487. /.makeinternaldict {
  488.   .currentglobal true .setglobal
  489.     [ /dup .systemvar 1183615869 /eq .systemvar
  490.     [ /pop .systemvar null ] cvx
  491.     false .setglobal
  492.     dup 1 10 dict .forceput    % proc is global, dict is local
  493.     true .setglobal
  494.     [ /internaldict /cvx .systemvar /invalidaccess /signalerror cvx ] cvx
  495.       /ifelse .systemvar
  496.     ] cvx executeonly
  497.   exch .setglobal
  498. } odef
  499. systemdict /internaldict dup .makeinternaldict .makeoperator
  500. .forceput        % proc is local, systemdict is global
  501. % Move superexec to internaldict if superexec is defined.
  502. currentdict /superexec .knownget {
  503.   1183615869 internaldict /superexec 3 -1 roll put
  504.   currentdict /superexec .undef
  505. } if
  506.  
  507. % Define some additional built-in procedures (beyond the ones defined by
  508. % the PostScript Language Reference Manual).
  509. % Warning: these are not guaranteed to stay the same from one release
  510. % to the next!
  511. /concatstrings    %    (str1) (str2) concatstrings (str1str2)
  512.     { exch dup length 2 index length add string    % str2 str1 new
  513.       dup dup 4 2 roll copy        % str2 new new new1
  514.       length 4 -1 roll putinterval
  515.     } bind def
  516. /copyarray
  517.     { dup length array copy } bind def
  518. % Copy a dictionary per the Level 2 spec even in Level 1.
  519. /.copydict        % <fromdict> <todict> .copydict <todict>
  520.     { dup 3 -1 roll { put dup } forall pop } bind def
  521. /copystring
  522.     { dup length string copy } bind def
  523. /findlibfile {
  524.     .libfile { dup .filename pop exch true } { false } ifelse
  525. } odef
  526. /.growdictlength    % get size for growing a dictionary
  527.     { length 3 mul 2 idiv 1 add
  528.     } bind def
  529. /.growdict        % grow a dictionary
  530.     { dup .growdictlength .setmaxlength
  531.     } bind def
  532. /.growput        % put, grow the dictionary if needed
  533.     { 2 index length 3 index maxlength eq
  534.        { 3 copy pop known not { 2 index .growdict } if
  535.        } if
  536.       put
  537.     } bind def
  538. % .localvmarray may be an operator: see zsysvm.c.
  539. /.localvmarray where {
  540.   pop
  541. } {
  542.   /.localvmarray {
  543.     .currentglobal false .setglobal
  544.     exch array exch .setglobal
  545.   } bind def
  546. } ifelse
  547. /.localvmdict where {
  548.   pop
  549. } {
  550.   /.localvmdict {
  551.     .currentglobal false .setglobal
  552.     exch dict exch .setglobal
  553.   } bind def
  554. } ifelse
  555. /.packtomark
  556.     { counttomark packedarray exch pop } bind def
  557. /ppstack
  558.     { 0 1 count 3 sub { index === } for } bind def
  559. /runlibfile
  560.     {        % We don't want to bind 'run' into this procedure,
  561.             % since run may get redefined.
  562.       findlibfile
  563.        { exch pop /run .systemvar exec }
  564.        { /undefinedfilename signalerror }
  565.       ifelse
  566.     } bind def
  567. /selectdevice
  568.     { finddevice setdevice .setdefaultscreen } bind def
  569. /signalerror        % <object> <errorname> signalerror -
  570.     { /errordict .systemvar exch get exec } bind def
  571.  
  572. % Define the =[only] procedures.  Also define =print,
  573. % which is used by some PostScript programs even though
  574. % it isn't documented anywhere.
  575. /write=only {
  576.     .writecvs
  577. } bind def
  578. /write= {
  579.     1 index exch write=only (\n) writestring
  580. } bind def
  581. /=only    { (%stdout) (w) file exch write=only } bind def
  582. /=    { =only (\n) print } bind def
  583. /=print    /=only load def
  584. % Temporarily define == as = for the sake of runlibfile0.
  585. /== /= load def
  586.  
  587. % The following procedures are documented.
  588. /copydevice {        % <device> copydevice <newdevice>
  589.   false .copydevice2
  590. } odef
  591. /finddevice {        % <devicename> finddevice <device>
  592.   /devicedict .systemvar exch get
  593.   dup 1 get null eq {
  594.         % This is the first request for this type of device.
  595.         % Create a default instance now.
  596.         % Stack: [proto null]
  597.     .currentglobal true .setglobal exch
  598.     dup dup 0 get copydevice 1 exch put
  599.     exch .setglobal
  600.   } if 1 get
  601. } bind def
  602. /findprotodevice {    % <devicename> findprotodevice <protodevice>
  603.   /devicedict .systemvar exch get 0 get
  604. } bind def
  605.  
  606. % Run a resource file.  This allows us to distinguish resource objects
  607. % from objects coming from input files.
  608. userdict /.currentresourcefile null put
  609. /.execasresource {    % <file> <proc|runfile> .execasresource -
  610.   /stopped .systemvar
  611.   /.currentresourcefile .uservar
  612.         % Stack: file proc -stopped- currfile
  613.   .userdict /.currentresourcefile 5 index cvlit put
  614.   2 .execn        % stopped <file>
  615.   .userdict /.currentresourcefile 3 -1 roll put
  616.   { stop } if
  617. } bind def
  618. /.runresource {        % <file> .runresource -
  619.   { /run .systemvar exec } .execasresource
  620. } bind def
  621.  
  622. % Define procedures for getting and setting the current device resolution.
  623.  
  624. /gsgetdeviceprop    % <device> <propname> gsgetdeviceprop <value>
  625.  { 2 copy mark exch null .dicttomark .getdeviceparams
  626.    dup mark eq        % if true, not found
  627.     { pop dup /undefined signalerror }
  628.     { 5 1 roll pop pop pop pop }
  629.    ifelse
  630.  } bind def
  631. /gscurrentresolution    % - gscurrentresolution <[xres yres]>
  632.  { currentdevice /HWResolution gsgetdeviceprop
  633.  } bind def
  634. /gssetresolution    % <[xres yres]> gssetresolution -
  635.  { 2 array astore mark exch /HWResolution exch
  636.    currentdevice copydevice putdeviceprops setdevice
  637.  } bind def
  638.  
  639. % Define auxiliary procedures needed for the above.
  640. /shellarguments        % -> shell_arguments true (or) false
  641.     { /ARGUMENTS where
  642.        { /ARGUMENTS get dup type /arraytype eq
  643.           { aload pop /ARGUMENTS null store true }
  644.           { pop false }
  645.          ifelse }
  646.        { false } ifelse
  647.     } bind def
  648. /.confirm {
  649.   DISPLAYING NOPAUSE not TTYPAUSE or and {
  650.     % Print a message (unless NOPAGEPROMPT or NOPROMPT is true)
  651.     % and wait for the user to type something.
  652.     % If the user just types a newline, flush it.
  653.     NOPAGEPROMPT NOPROMPT or { pop } { print flush } ifelse
  654.     .confirmread
  655.   } {
  656.     pop
  657.   } ifelse
  658. } bind def
  659. /.confirmread {
  660.   TTYPAUSE {
  661.     (/dev/tty) (r) file dup read pop pop closefile
  662.   } {
  663.     .echo.mode false echo
  664.     (%stdin) (r) file dup read {
  665.       dup (\n) 0 get eq { pop pop } { unread } ifelse
  666.     } {
  667.       pop
  668.     } ifelse echo
  669.   } ifelse
  670. } bind def
  671.  
  672. % Define the procedure used by .runfile, .runstdin and .runstring
  673. % for executing user input.
  674. % This is called with a procedure or executable file on the operand stack.
  675. /.execute {        % <obj> .execute <stopped>
  676.   stopped $error /newerror get and
  677.    { handleerror flush true } { false } ifelse
  678. } bind def
  679. /execute {        % <obj> execute -
  680.   .execute pop
  681. } odef
  682. % Define an execute analogue of runlibfile0.
  683. /execute0 {        % <obj> execute0 -
  684.   .execute { /execute0 cvx 1 .quit } if
  685. } bind def
  686. % Define the procedure that the C code uses for running files
  687. % named on the command line.
  688. /.runfile {
  689.   { runlibfile } execute0
  690. } def
  691. % Define the procedure that the C code uses for running piped input.
  692. % We don't use the obvious { (%stdin) run }, because we want the file to be
  693. % reopened if a startjob does a restore.
  694. /.runstdin {
  695.   { { (%stdin) (r) file cvx } .runexec } execute0
  696. } bind def
  697. % Define the procedure that the C code uses for running commands
  698. % given on the command line with -c.  We turn the string into a file so that
  699. % .runexec can do the right thing with a startjob.
  700. /.runstring {
  701.   .currentglobal exch true .setglobal
  702.   0 () .subfiledecode
  703.   exch .setglobal cvx { .runexec } execute0
  704. } bind def
  705. % Define the procedure that the C code uses to set up for executing
  706. % a string that may be received in pieces.
  707. /.runstringbegin {
  708.   .currentglobal true .setglobal
  709.   { .needinput } bind 0 () .subfiledecode
  710.   exch .setglobal cvx .runexec
  711. } bind def
  712.  
  713. % Define a special version of runlibfile that aborts on errors.
  714. /runlibfile0
  715.     { cvlit dup /.currentfilename exch def
  716.        { findlibfile not { stop } if }
  717.       stopped
  718.        { (Can't find \(or open\) initialization file ) print
  719.          .currentfilename == flush /runlibfile0 cvx 1 .quit
  720.        } if
  721.       exch pop cvx stopped
  722.        { (While reading ) print .currentfilename print (:\n) print flush
  723.          handleerror /runlibfile0 1 .quit
  724.        } if
  725.     } bind def
  726. % Temporarily substitute it for the real runlibfile.
  727. /.runlibfile /runlibfile load def
  728. /runlibfile /runlibfile0 load def
  729.  
  730. % Create the error handling machinery.
  731. % Define the standard error handlers.
  732. % The interpreter has created the ErrorNames array.
  733. /.unstoppederrorhandler    % <command> <errorname> .unstoppederrorhandler -
  734.  {    % This is the handler that gets used for recursive errors,
  735.     % or errors outside the scope of a 'stopped'.
  736.    2 copy SHORTERRORS
  737.     { (%%[ Error: ) print =only flush
  738.       (; OffendingCommand: ) print =only ( ]%%) =
  739.     }
  740.     { (Unrecoverable error: ) print =only flush
  741.       ( in ) print = flush
  742.       count 2 gt
  743.        { (Operand stack:\n  ) print
  744.          count 1 sub -1 2 { (  ) print index =only flush } for
  745.      () = flush
  746.        } if
  747.     }
  748.    ifelse
  749.    -1 0 1 //ErrorNames length 1 sub
  750.     { dup //ErrorNames exch get 3 index eq
  751.        { not exch pop exit } { pop } ifelse
  752.     }
  753.    for exch pop .quit
  754.  } bind def
  755. /.errorhandler        % <command> <errorname> .errorhandler -
  756.   {        % Detect an internal 'stopped'.
  757.     1 .instopped { null eq { pop pop stop } if } if
  758.     $error /.inerror get 1 .instopped { pop } { pop true } ifelse
  759.      { .unstoppederrorhandler
  760.      } if    % detect error recursion
  761.     $error /globalmode .currentglobal false .setglobal put
  762.     $error /.inerror true put
  763.     $error /newerror true put
  764.     $error exch /errorname exch put
  765.     $error exch /command exch put
  766.     $error /recordstacks get $error /errorname get /VMerror ne and
  767.      {        % Attempt to store the stack contents atomically.
  768.        count array astore dup $error /ostack 4 -1 roll
  769.        countexecstack array execstack $error /estack 3 -1 roll
  770.        countdictstack array dictstack $error /dstack 3 -1 roll
  771.        put put put aload pop
  772.      }
  773.      { $error /dstack .undef
  774.        $error /estack .undef
  775.        $error /ostack .undef
  776.      }
  777.     ifelse
  778.     $error /position currentfile status
  779.      { currentfile { fileposition } .internalstopped { pop null } if
  780.      }
  781.      {        % If this was a scanner error, the file is no longer current,
  782.         % but the command holds the file, which may still be open.
  783.        $error /command get dup type /filetype eq
  784.         { { fileposition } .internalstopped { pop null } if }
  785.         { pop null }
  786.        ifelse
  787.      }
  788.     ifelse put
  789.         % During initialization, we don't reset the allocation
  790.         % mode on errors.
  791.     $error /globalmode get $error /.nosetlocal get and .setglobal
  792.     $error /.inerror false put
  793.     stop
  794.   } bind def
  795. % Define the standard handleerror.  We break out the printing procedure
  796. % (.printerror) so that it can be extended for binary output
  797. % if the Level 2 facilities are present.
  798.   /.printerror
  799.    { $error begin
  800.        /command load errorname SHORTERRORS
  801.     { (%%[ Error: ) print =only flush
  802.       (; OffendingCommand: ) print =only
  803.       errorinfo dup null eq {
  804.         pop
  805.       } {
  806.         (;\nErrorInfo:) print
  807.         dup type /arraytype eq
  808.           { { ( ) print =only } forall }
  809.           { ( ) print =only }
  810.         ifelse
  811.       } ifelse
  812.           ( ]%%) = flush
  813.     }
  814.     { (Error: ) print ==only flush
  815.       ( in ) print ==only flush
  816.       errorinfo dup null eq {
  817.         pop
  818.       } {
  819.         (\nAdditional information: ) print ==only flush
  820.       } ifelse
  821.       .printerror_long
  822.     }
  823.        ifelse
  824.        .clearerror
  825.      end
  826.      flush
  827.     } bind def     
  828.   /.printerror_long            % long error printout,
  829.                     % $error is on the dict stack
  830.    {    % Push the (anonymous) stack printing procedure.
  831.     %  <heading> <==flag> <override-name> <stackname> proc
  832.        {
  833.      currentdict exch .knownget    % stackname defined in $error?
  834.      {
  835.        4 1 roll            % stack: <stack> <head> <==flag> <over>
  836.        errordict exch .knownget    % overridename defined?
  837.        { 
  838.          exch pop exch pop exec    % call override with <stack>
  839.        }
  840.        { 
  841.          exch print exch        % print heading. stack <==flag> <stack>
  842.          1 index not { () = } if
  843.          { 1 index { (\n    ) } { (   ) } ifelse print
  844.            dup type /dicttype eq
  845.            {
  846.          (--dict:) print
  847.          dup rcheck {
  848.            dup length =only (/) print dup maxlength =only
  849.            dup wcheck not { ((ro)) print } if
  850.          } if
  851.          /gcheck where {
  852.            pop gcheck { ((G)) } { ((L)) } ifelse print
  853.          } {
  854.            pop
  855.          } ifelse (--) print
  856.            }
  857.            {
  858.          dup type /stringtype eq 2 index or
  859.          { ==only } { =only } ifelse
  860.            } ifelse
  861.          } forall
  862.          pop
  863.        }
  864.        ifelse            % overridden
  865.      }
  866.      { pop pop pop
  867.      }
  868.      ifelse                % stack known
  869.        }
  870.  
  871.        (\nOperand stack:) OSTACKPRINT /.printostack /ostack 4 index exec
  872.        (\nExecution stack:) ESTACKPRINT /.printestack /estack 4 index exec
  873.        (\nBacktrace:) true /.printbacktrace /backtrace 4 index exec
  874.        (\nDictionary stack:) false /.printdstack /dstack 4 index exec
  875.        () =
  876.        pop    % printing procedure
  877.  
  878.        errorname /VMerror eq
  879.     { (VM status:) print mark vmstatus
  880.       counttomark { ( ) print counttomark -1 roll dup =only } repeat
  881.       cleartomark () =
  882.     } if
  883.  
  884.        .languagelevel 2 ge
  885.     { (Current allocation mode is ) print
  886.       globalmode { (global\n) } { (local\n) } ifelse print
  887.     } if
  888.  
  889.        .oserrno dup 0 ne
  890.     { (Last OS error: ) print
  891.       errorname /VMerror ne
  892.        { dup .oserrorstring { = pop } { = } ifelse }
  893.        { = }
  894.       ifelse
  895.     }
  896.     { pop
  897.     }
  898.        ifelse
  899.  
  900.        position null ne
  901.     { (Current file position is ) print position = }
  902.        if
  903.  
  904.    } bind def
  905. % Define a procedure for clearing the error indication.
  906. /.clearerror
  907.  { $error /newerror false put
  908.    $error /errorname null put
  909.    $error /errorinfo null put
  910.    0 .setoserrno
  911.  } bind def
  912.  
  913. % Define $error.  This must be in local VM.
  914. .currentglobal false .setglobal
  915. /$error 40 dict .forcedef    % $error is local, systemdict is global
  916.         % newerror, errorname, command, errorinfo,
  917.         % ostack, estack, dstack, recordstacks,
  918.         % binary, globalmode,
  919.         % .inerror, .nosetlocal, position,
  920.         % plus extra space for badly designed error handers.
  921. $error begin
  922.   /newerror false def
  923.   /recordstacks true def
  924.   /binary false def
  925.   /globalmode .currentglobal def
  926.   /.inerror false def
  927.   /.nosetlocal true def
  928.   /position null def
  929. end
  930. % Define errordict similarly.  It has one entry per error name,
  931. %   plus handleerror.  However, some astonishingly badly written PostScript
  932. %   files require it to have at least one empty slot.
  933. /errordict ErrorNames length 2 add dict
  934. .forcedef        % errordict is local, systemdict is global
  935. .setglobal        % contents of errordict are global
  936. errordict begin
  937.   ErrorNames
  938.    { mark 1 index systemdict /.errorhandler get /exec load .packtomark cvx def
  939.    } forall
  940. % The handlers for interrupt and timeout are special; there is no
  941. % 'current object', so they push their own name.
  942.    { /interrupt /timeout }
  943.    { mark 1 index dup systemdict /.errorhandler get /exec load .packtomark cvx def
  944.    } forall
  945. /handleerror
  946.  { /.printerror .systemvar exec
  947.  } bind def
  948. end
  949.  
  950. % Define the [write]==[only] procedures.
  951. /.dict 8 dict dup
  952. begin def
  953.   /.cvp {1 index exch 1 .writecvp} bind def
  954.   /.p {1 index exch writestring} bind def
  955.   /.p1 {2 index exch writestring} bind def
  956.   /.p2 {3 index exch writestring} bind def
  957.   /.print
  958.     { dup type .dict exch .knownget { exec } { .cvp } ifelse
  959.     } bind def
  960.   /arraytype
  961.     {dup rcheck
  962.       {() exch dup xcheck
  963.         {({) .p2
  964.          {exch .p1
  965.           1 index exch .print pop ( )} forall
  966.          (})}
  967.         {([) .p2
  968.          {exch .p1
  969.           1 index exch .print pop ( )} forall
  970.          (])}
  971.        ifelse exch pop .p}
  972.       {.cvp}
  973.      ifelse} bind def
  974.   /packedarraytype /arraytype load def
  975. {//.dict begin .print pop end}
  976.   bind
  977. end
  978.  
  979. /write==only exch def
  980. /write== {1 index exch write==only (\n) writestring} bind def
  981. /==only { (%stdout) (w) file exch write==only } bind def
  982. /== {==only (\n) print} bind def
  983.  
  984. % Define [write]===[only], an extension that prints dictionaries
  985. % in readable form and doesn't truncate strings.
  986. /.dict /write==only load 0 get dup length 2 add dict .copydict dup
  987. begin def
  988.   /dicttype
  989.     { dup rcheck
  990.        { (<< ) .p1
  991.           { 2 index 3 -1 roll .print pop ( ) .p1
  992.         1 index exch .print pop ( ) .p
  993.           }
  994.          forall (>>) .p
  995.        }
  996.        { .cvp
  997.        }
  998.       ifelse
  999.     } bind def
  1000.   /stringtype
  1001.     { 1 index exch 2 .writecvp
  1002.     } bind def
  1003.  
  1004. {//.dict begin .print pop end}
  1005.   bind
  1006. end
  1007.  
  1008. /write===only exch def
  1009. /write=== {1 index exch write===only (\n) writestring} bind def
  1010. /===only { (%stdout) (w) file exch write===only } bind def
  1011. /=== { ===only (\n) print } bind def
  1012.  
  1013. (END PROCS) VMDEBUG
  1014.  
  1015. % Define the font directory.
  1016. /FontDirectory false .setglobal 100 dict true .setglobal
  1017. .forcedef        % FontDirectory is local, systemdict is global
  1018.  
  1019. % Define the encoding dictionary.
  1020. /EncodingDirectory 16 dict def    % enough for Level 2 + PDF standard encodings
  1021.  
  1022. % Define .findencoding.  (This is redefined in Level 2.)
  1023. /.findencoding
  1024.  { //EncodingDirectory exch get exec
  1025.  } bind def
  1026. /.defineencoding
  1027.  { //EncodingDirectory 3 1 roll put
  1028.  } bind def
  1029. % If we've got the composite font extensions, define findencoding.
  1030. % To satisfy the Genoa FTS, findencoding must be a procedure, not an operator.
  1031. /rootfont where { pop /findencoding { .findencoding } def } if
  1032.  
  1033. % Define .registerencoding.
  1034. % NOTE: the name registeredencodings is known to (initialized by and shared
  1035. % with) the interpreter.
  1036. /.registerencoding {    % <index> <array> .registerencoding -
  1037.     % Check that the array is indexable.
  1038.     % (It might still be a string, but then the .namestring will fail.)
  1039.   dup 0 0 getinterval pop
  1040.     % Check that all the elements of the array are names.
  1041.   dup { .namestring pop } forall
  1042.     % Do the store.
  1043.   //registeredencodings 2 index 2 index readonly put pop pop
  1044. } bind odef
  1045. systemdict /registeredencodings .undef
  1046.  
  1047. % Load StandardEncoding.
  1048. %% Replace 1 (gs_std_e.ps)
  1049. (gs_std_e.ps) dup runlibfile VMDEBUG
  1050.  
  1051. % Load ISOLatin1Encoding.
  1052. %% Replace 1 (gs_il1_e.ps)
  1053. (gs_il1_e.ps) dup runlibfile VMDEBUG
  1054.  
  1055. % Define stubs for the Symbol and Dingbats encodings.
  1056. % Note that the first element of the procedure must be the file name,
  1057. % since gs_lev2.ps extracts it to set up the Encoding resource category.
  1058.  
  1059.   /SymbolEncoding { /SymbolEncoding .findencoding } bind def
  1060. %% Replace 3 (gs_sym_e.ps)
  1061.   EncodingDirectory /SymbolEncoding
  1062.    { (gs_sym_e.ps) //systemdict begin runlibfile SymbolEncoding end }
  1063.   bind put
  1064.  
  1065.   /DingbatsEncoding { /DingbatsEncoding .findencoding } bind def
  1066. %% Replace 3 (gs_dbt_e.ps)
  1067.   EncodingDirectory /DingbatsEncoding
  1068.    { (gs_dbt_e.ps) //systemdict begin runlibfile DingbatsEncoding end }
  1069.   bind put
  1070.  
  1071. (END FONTDIR/ENCS) VMDEBUG
  1072.  
  1073. % Construct a dictionary of all available devices.
  1074. % These are (read-only) device prototypes that can't be
  1075. % installed or have their parameters changed.  For this reason,
  1076. % the value in the dictionary is actually a 2-element writable array,
  1077. % to allow us to create a default instance of the prototype on demand.
  1078.  
  1079.     % Loop until the .getdevice gets a rangecheck.
  1080. errordict /rangecheck 2 copy get
  1081. errordict /rangecheck { pop stop } put    % pop the command
  1082.   0 { {dup .getdevice exch 1 add} loop} .internalstopped pop
  1083.   1 add dict  /devicedict 1 index def
  1084.   begin            % 2nd copy of count is on stack
  1085.    { dup .devicename exch
  1086.      dup wcheck { dup } { null } ifelse 2 array astore def
  1087.    } repeat
  1088.   end
  1089. put        % errordict /rangecheck
  1090. .clearerror
  1091. /devicenames devicedict { pop } forall devicedict length packedarray def
  1092.  
  1093. % Determine the default device.
  1094. /defaultdevice DISPLAYING
  1095.  { systemdict /DEVICE .knownget
  1096.     { devicedict 1 index known not
  1097.        { (Unknown device: ) print =
  1098.      flush /defaultdevice cvx 1 .quit
  1099.        }
  1100.       if
  1101.     }
  1102.     { 0 .getdevice .devicename
  1103.     }
  1104.    ifelse
  1105.  }
  1106.  { /nullpage
  1107.  }
  1108. ifelse
  1109. /.defaultdevicename 1 index def
  1110. finddevice    % make a copy
  1111. def
  1112. devicedict /Default devicedict .defaultdevicename get put
  1113.  
  1114. (END DEVS) VMDEBUG
  1115.  
  1116. % Define statusdict, for the benefit of programs
  1117. % that think they are running on a LaserWriter or similar printer.
  1118. %% Replace 1 (gs_statd.ps)
  1119. (gs_statd.ps) runlibfile
  1120.  
  1121. (END STATD) VMDEBUG
  1122.  
  1123. % Load the standard font environment.
  1124. %% Replace 1 (gs_fonts.ps)
  1125. (gs_fonts.ps) runlibfile
  1126.  
  1127. (END GS_FONTS) VMDEBUG
  1128.  
  1129. % Define the default halftone screen and BG/UCR functions now, so that
  1130. % it will bind in the original definitions of set[color]screen.
  1131. % We make this a procedure so we can call it again when switching devices.
  1132.  
  1133. % Use an ordered dither for low-resolution devices.
  1134. /.setloreshalftone {    % <dpi> .setloreshalftone -
  1135.     % The following 'ordered dither' spot function was contributed by
  1136.     % Gregg Townsend.  Thanks, Gregg!
  1137.    16.001 div 0            % not 16: avoids rounding problems
  1138.     { 1 add 7.9999 mul cvi exch 1 add 7.9999 mul cvi 16 mul add <
  1139.     0E 8E 2E AE 06 86 26 A6 0C 8C 2C AC 04 84 24 A4
  1140.     CE 4E EE 6E C6 46 E6 66 CC 4C EC 6C C4 44 E4 64
  1141.     3E BE 1E 9E 36 B6 16 96 3C BC 1C 9C 34 B4 14 94
  1142.     FE 7E DE 5E F6 76 D6 56 FC 7C DC 5C F4 74 D4 54
  1143.     01 81 21 A1 09 89 29 A9 03 83 23 A3 0B 8B 2B AB
  1144.     C1 41 E1 61 C9 49 E9 69 C3 43 E3 63 CB 4B EB 6B
  1145.     31 B1 11 91 39 B9 19 99 33 B3 13 93 3B BB 1B 9B
  1146.     F1 71 D1 51 F9 79 D9 59 F3 73 D3 53 FB 7B DB 5B
  1147.     0D 8D 2D AD 05 85 25 A5 0F 8F 2F AF 07 87 27 A7
  1148.     CD 4D ED 6D C5 45 E5 65 CF 4F EF 6F C7 47 E7 67
  1149.     3D BD 1D 9D 35 B5 15 95 3F BF 1F 9F 37 B7 17 97
  1150.     FD 7D DD 5D F5 75 D5 55 FF 7F DF 5F F7 77 D7 57
  1151.     02 82 22 A2 0A 8A 2A AA 00 80 20 A0 08 88 28 A8
  1152.     C2 42 E2 62 CA 4A EA 6A C0 40 E0 60 C8 48 E8 68
  1153.     32 B2 12 92 3A BA 1A 9A 30 B0 10 90 38 B8 18 98
  1154.     F2 72 D2 52 FA 7A DA 5A F0 70 D0 50 F8 78 D8 58
  1155.      > exch get 256 div
  1156.     }
  1157.    bind
  1158.         % Use correct, per-plane screens for CMYK devices only.
  1159.    //systemdict /setcolorscreen known processcolors 4 eq and
  1160.     { 3 copy 6 copy //setcolorscreen }
  1161.     { //setscreen }
  1162.    ifelse
  1163. } bind def
  1164. /.setloresscreen {    % <dpi> .setloresscreen -
  1165.   .setloreshalftone
  1166.   0 array cvx settransfer    % Genoa CET won't accept a packed array!
  1167.   /setstrokeadjust where { pop true setstrokeadjust } if
  1168. } bind def
  1169. % Use a 45-degree spot screen for high-resolution devices.
  1170. /.sethireshalftone {    % <dpi> .sethireshalftone <doscreen>
  1171.     % According to information published by Hewlett-Packard,
  1172.     % they use a 60 line screen on 300 DPI printers and
  1173.     % an 85 line screen on 600 DPI printers.
  1174.     % However, we use a 106 line screen, which produces smoother-
  1175.     % looking shades but fewer of them (32 vs. 50).
  1176.     % 46 was suggested as a good frequency value for printers
  1177.     % between 200 and 400 DPI, so we use it for lower resolutions.
  1178.     % Imagesetters need even higher frequency screens.
  1179.    //systemdict /DITHERPPI known
  1180.     { DITHERPPI
  1181.     }
  1182.     { dup cvi 100 idiv 15 .min
  1183.        {null 46 46 60 60 60 106 106 106 106 133 133 133 133 133 150}
  1184.       exch get
  1185.      }
  1186.    ifelse
  1187.    1 index 4.01 div .min    % at least a 4x4 cell
  1188.    45
  1189.     % The following screen algorithm is used by permission of the author.
  1190.     { 1 add 180 mul cos 1 0.08 add mul exch 2 add 180 mul cos 
  1191.       1 0.08 sub mul add 2 div % (C) 1989 Berthold K.P. Horn
  1192.     }
  1193.    bind
  1194.     % Determine whether we have lots of process colors.
  1195.     % If so, don't bother with color screening or gamma correction.
  1196.     % Also don't do gamma correction on very high-resolution devices.
  1197.     % (This should depend on dot gain, not resolution, but we don't
  1198.     % currently have a way to determine this.)
  1199.    currentdevice mark
  1200.      /RedValues 0 /GreenValues 0 /BlueValues 0 /GrayValues 0
  1201.    .dicttomark .getdeviceparams
  1202.    counttomark 2 idiv 1 sub { exch pop min } repeat
  1203.    exch pop exch pop 32 lt 4 index 800 lt and 5 1 roll
  1204.     % Stack: doscreen dpi freq angle proc
  1205.     % Ghostscript currently doesn't use correct, per-plane halftones
  1206.     % unless setcolorscreen has been executed.  Since these are
  1207.     % computationally much more expensive than binary halftones,
  1208.     % we check to make sure they are really warranted, i.e., we have
  1209.     % a high-resolution CMYK device (i.e., not a display) with
  1210.     % fewer than 5 bits per plane (i.e., not a true-color device).
  1211.    4 -1 roll 150 ge
  1212.     { /setcolorscreen where
  1213.        { pop //systemdict /COLORSCREEN known
  1214.       { COLORSCREEN }
  1215.       { 3 index }
  1216.      ifelse
  1217.      dup false ne
  1218.       { 4 1 roll 3 copy 6 copy 13 -1 roll
  1219.     % For really high-quality screening on printers, we need to
  1220.     % give each plane its own screen angle.  Unfortunately,
  1221.     % this currently has very large space and time costs.
  1222.         true eq        % true => different angles,
  1223.                 % 0 => same angles
  1224.          { { 45 90 15 75 } { 3 1 roll exch pop 12 3 roll } forall
  1225.          }
  1226.         if //setcolorscreen
  1227.       }
  1228.       { pop //setscreen    % false => single binary screen
  1229.       }
  1230.      ifelse
  1231.        }
  1232.        { //setscreen        % setcolorscreen not known
  1233.        }
  1234.       ifelse
  1235.     }
  1236.     { //setscreen            % not high resolution
  1237.     }
  1238.    ifelse
  1239. } bind def
  1240. /.sethiresscreen {    % <dpi> .sethiresscreen -
  1241.   .sethireshalftone
  1242.             % Stack: doscreen
  1243.     {    % Set the transfer function to lighten up the grays.
  1244.     % We correct at the high end so that very light grays
  1245.     % don't disappear completely if they darken <1 screen pixel.
  1246.     % Parameter values closer to 1 are better for devices with
  1247.     % less dot spreading; lower values are better with more spreading.
  1248.     % The value 0.8 is a compromise that will probably please no one!
  1249.     %
  1250.     % Because of a bug in FrameMaker, we have to accept operands
  1251.     % outside the valid range of [0..1].
  1252.       { dup dup 0.0 gt exch 1.0 lt and
  1253.      { 0.8 exp dup dup 0.9375 gt exch 0.999 lt and    % > 15/16
  1254.         { .currentscreenlevels 1 sub    % tweak to avoid boundary
  1255.           1 exch div 1 exch sub .min
  1256.         }
  1257.        if
  1258.      }
  1259.     if
  1260.       }
  1261.     }
  1262.     {    % Set the transfer function to the identity.
  1263.       0 array cvx        % Genoa CET won't accept a packed array!
  1264.     }
  1265.    ifelse settransfer
  1266.    /setstrokeadjust where { pop false setstrokeadjust } if
  1267.     % Increase fill adjustment so that we effectively use Adobe's
  1268.     % any-part-of-pixel rule.
  1269.    0.5 .setfilladjust
  1270. } bind def
  1271. % Set the default screen and BG/UCR.
  1272. /.setdefaultbgucr {
  1273.   systemdict /setblackgeneration known {
  1274.     { pop 0 } dup setblackgeneration setundercolorremoval
  1275.   } if
  1276. } bind def
  1277. /.useloresscreen {    % - .useloresscreen <bool>
  1278.     % Compute min(|dpi x|,|dpi y|) as the definition of the resolution.
  1279.   72 72 matrix defaultmatrix dtransform abs exch abs .min
  1280.   dup 150 lt //systemdict /DITHERPPI known not and
  1281. } bind def
  1282.  
  1283. % The following implementation uses LL2 extensions, but only in stopped
  1284. % contexts so that with LL1, the .set??reshalftone will be used.
  1285. %
  1286. %    - .getdefaulthalftone <halftonedict> true    if default found
  1287. %                  false            
  1288. /.getdefaulthalftone {
  1289.   % try the device to see if it has a default halftone
  1290.   { currentdevice /HalftoneDefault gsgetdeviceprop } stopped
  1291.   { pop pop false }        % no device property
  1292.   { dup type /dicttype eq { true } { pop false } ifelse }
  1293.   ifelse
  1294.   % stack: <halftonedict> true    if default found
  1295.   %         false          not found
  1296.   dup not
  1297.   { % device did not provide a default, try Resource
  1298.     pop { /Default /Halftone /findresource .systemvar exec } stopped 
  1299.     { pop pop false } { true } ifelse
  1300.   }
  1301.   if
  1302. } bind def
  1303.  
  1304. /.setdefaulthalftone {
  1305.   .getdefaulthalftone 
  1306.   { sethalftone }
  1307.   { % default not found
  1308.     .useloresscreen { .setloreshalftone } { .sethireshalftone pop } ifelse
  1309.   }
  1310.   ifelse
  1311. } bind def
  1312.  
  1313. /.setdefaultscreen {
  1314.   .useloresscreen { .setloresscreen } { .sethiresscreen } ifelse
  1315.   .setdefaultbgucr
  1316. } bind def
  1317.  
  1318. % Load the initialization files for optional features.
  1319. %% Replace 4 INITFILES
  1320. systemdict /INITFILES known
  1321.  { INITFILES { dup runlibfile VMDEBUG } forall
  1322.  }
  1323. if
  1324.  
  1325. % If Level 2 (or higher) functionality is implemented, enable it now.
  1326. /.setlanguagelevel where {
  1327.   pop 2 .setlanguagelevel
  1328.     % If the resource machinery is loaded, fix up some things now.
  1329.   /.fixresources where { pop .fixresources } if
  1330. } if
  1331. /ll3dict where {
  1332.   pop 3 .setlanguagelevel
  1333. } if
  1334.  
  1335. (END INITFILES) VMDEBUG
  1336.  
  1337. % Create a null font.  This is the initial font.
  1338. 8 dict dup begin
  1339.   /FontMatrix [ 1 0 0 1 0 0 ] readonly def
  1340.   /FontType 3 def
  1341.   /FontName () def
  1342.   /Encoding StandardEncoding def
  1343.   /FontBBox { 0 0 0 0 } readonly def % executable is bogus, but customary ...
  1344.   /BuildChar { pop pop 0 0 setcharwidth } bind def
  1345.   /PaintType 0 def        % shouldn't be needed!
  1346. end
  1347. /NullFont exch definefont setfont
  1348.  
  1349. % Define NullFont as the font.
  1350. /NullFont currentfont def
  1351.  
  1352. % Load initial fonts from FONTPATH directories, Fontmap file,
  1353. % and/or .getccfont as appropriate.
  1354. .loadinitialfonts
  1355.  
  1356. % Remove NullFont from FontDirectory, so it can't be accessed by mistake.
  1357. /undefinefont where {
  1358.   pop /NullFont undefinefont
  1359. } {
  1360.   FontDirectory /NullFont .undef
  1361. } ifelse
  1362.  
  1363. (END FONTS) VMDEBUG
  1364.  
  1365. % Restore the real definition of runlibfile.
  1366. /runlibfile /.runlibfile load def
  1367. currentdict /.runlibfile .undef
  1368.  
  1369. % Bind all the operators defined as procedures.
  1370. /.bindoperators        % binds operators in currentdict
  1371.  { % Temporarily disable the typecheck error.
  1372.    errordict /typecheck 2 copy get
  1373.    errordict /typecheck { pop } put    % pop the command
  1374.    currentdict
  1375.     { dup type /operatortype eq
  1376.        { % This might be a real operator, so bind might cause a typecheck,
  1377.      % but we've made the error a no-op temporarily.
  1378.      .bind        % do a real bind even if NOBIND is set
  1379.        }
  1380.       if pop pop
  1381.     } forall
  1382.    put
  1383.  } def
  1384. NOBIND DELAYBIND or not { .bindoperators } if
  1385.  
  1386. % Establish a default environment.
  1387.  
  1388. defaultdevice
  1389. % The following line used to skip setting of page size and resolution if
  1390. % NODISPLAY was selected.  We think this was only to save time and memory,
  1391. % and it is a bad idea because it prevents setting the resolution in this
  1392. % situation, which pstoedit (among other programs) relies on.
  1393. %DISPLAYING not { setdevice (%END DISPLAYING) .skipeof } if
  1394. systemdict /DEVICEWIDTH known
  1395. systemdict /DEVICEHEIGHT known or
  1396. systemdict /DEVICEWIDTHPOINTS known or
  1397. systemdict /DEVICEHEIGHTPOINTS known or
  1398. systemdict /DEVICEXRESOLUTION known or
  1399. systemdict /DEVICEYRESOLUTION known or
  1400. systemdict /PAPERSIZE known or
  1401. not { (%END DEVICE) .skipeof } if
  1402. % Let DEVICE{WIDTH,HEIGHT}[POINTS] override PAPERSIZE.
  1403. systemdict /PAPERSIZE known
  1404. systemdict /DEVICEWIDTH known not and
  1405. systemdict /DEVICEHEIGHT known not and
  1406. systemdict /DEVICEWIDTHPOINTS known not and
  1407. systemdict /DEVICEHEIGHTPOINTS known not and
  1408.  {    % Convert the paper size to device dimensions.
  1409.    true statusdict /.pagetypenames get
  1410.     { PAPERSIZE eq
  1411.        { PAPERSIZE load
  1412.          dup 0 get /DEVICEWIDTHPOINTS exch def
  1413.          1 get /DEVICEHEIGHTPOINTS exch def
  1414.          pop false exit
  1415.        }
  1416.       if
  1417.     }
  1418.    forall
  1419.     { (Unknown paper size: ) print PAPERSIZE ==only (.) =
  1420.     }
  1421.    if
  1422.  }
  1423. if
  1424. % Adjust the device parameters per the command line.
  1425. % It is possible to specify resolution, pixel size, and page size;
  1426. % since any two of these determine the third, conflicts are possible.
  1427. % We simply pass them to .setdeviceparams and let it sort things out.
  1428.    mark /HWResolution null /HWSize null /PageSize null .dicttomark
  1429.    .getdeviceparams .dicttomark begin
  1430.    mark
  1431.     % Check for resolution.
  1432.    /DEVICEXRESOLUTION where dup
  1433.     { exch pop HWResolution 0 DEVICEXRESOLUTION put }
  1434.    if
  1435.    /DEVICEYRESOLUTION where dup
  1436.     { exch pop HWResolution 1 DEVICEYRESOLUTION put }
  1437.    if
  1438.    or { /HWResolution HWResolution } if
  1439.     % Check for device sizes specified in pixels.
  1440.    /DEVICEWIDTH where dup
  1441.     { exch pop HWSize 0 DEVICEWIDTH put }
  1442.    if
  1443.    /DEVICEHEIGHT where dup
  1444.     { exch pop HWSize 1 DEVICEHEIGHT put }
  1445.    if
  1446.    or { /HWSize HWSize } if
  1447.     % Check for device sizes specified in points.
  1448.    /DEVICEWIDTHPOINTS where dup
  1449.     { exch pop PageSize 0 DEVICEWIDTHPOINTS put }
  1450.    if
  1451.    /DEVICEHEIGHTPOINTS where dup
  1452.     { exch pop PageSize 1 DEVICEHEIGHTPOINTS put }
  1453.    if
  1454.    or { /PageSize PageSize } if
  1455.     % Check whether any parameters were set.
  1456.    dup mark eq { pop } { defaultdevice putdeviceprops } ifelse
  1457.    end
  1458. %END DEVICE
  1459. % Set any device properties defined on the command line.
  1460. % If BufferSpace is defined but not MaxBitmap, set MaxBitmap to BufferSpace.
  1461. systemdict /BufferSpace known
  1462. systemdict /MaxBitmap known not and
  1463.  { systemdict /MaxBitmap BufferSpace put
  1464.  } if
  1465. dup getdeviceprops
  1466. counttomark 2 idiv
  1467.  { systemdict 2 index known
  1468.     { pop dup load counttomark 2 roll }
  1469.     { pop pop }
  1470.    ifelse
  1471.  } repeat
  1472. counttomark dup 0 ne
  1473.  { 2 add -1 roll putdeviceprops }
  1474.  { pop pop }
  1475. ifelse
  1476. % If the initial device parameters are invalid, the setdevice may fail.
  1477. % Trap this and produce a reasonable error message.
  1478. { setdevice }        % does an erasepage
  1479. DEBUG { exec false } { .internalstopped } ifelse {
  1480.   (**** Unable to open the initial device, quitting.) = flush 1 .quit
  1481. } if
  1482.  
  1483. % If the media size is fixed, update the current page device dictionary.
  1484. FIXEDMEDIA
  1485. dup { pop systemdict /.currentpagedevice known } if
  1486. dup { pop .currentpagedevice exch pop } if
  1487. not { (%END MEDIA) .skipeof } if
  1488. currentpagedevice dup length dict .copydict
  1489. dup /Policies
  1490.     % Stack: <pagedevice> <pagedevice> /Policies
  1491. 1 index /InputAttributes
  1492. 2 copy get dup length dict .copydict
  1493.     % Stack: <pagedevice> <pagedevice> /Policies <pagedevice>
  1494.     %   /InputAttributes <inputattrs'>
  1495. dup 0 2 copy get dup length dict .copydict
  1496.     % Stack: <pagedevice> <pagedevice> /Policies <pagedevice>
  1497.     %   /InputAttributes <inputattrs'> <inputattrs'> 0 <attrs0'>
  1498. dup /PageSize 7 index /PageSize get
  1499. put                % PageSize in 0
  1500. put                % 0 in InputAttributes
  1501. put                % InputAttributes in pagedevice
  1502. % Also change the page size policy so we don't get an error.
  1503.     % Stack: <pagedevice> <pagedevice> /Policies
  1504. 2 copy get dup length dict .copydict
  1505.     % Stack: <pagedevice> <pagedevice> /Policies <policies'>
  1506. dup /PageSize 7 put        % PageSize in Policies
  1507. put                % Policies in pagedevice
  1508. .setpagedevice
  1509. %END MEDIA
  1510. %END DISPLAYING
  1511.  
  1512. (END DEVICE) VMDEBUG
  1513.  
  1514. % Establish a default upper limit in the character cache,
  1515. % namely, enough room for a 18-point character at the resolution
  1516. % of the default device, or for a character consuming 1% of the
  1517. % maximum cache size, whichever is larger.
  1518. mark
  1519.     % Compute limit based on character size.
  1520.   18 dup dtransform
  1521.   exch abs cvi 31 add 32 idiv 4 mul    % X raster
  1522.   exch abs cvi mul        % Y
  1523.     % Compute limit based on allocated space.
  1524.   cachestatus pop pop pop pop pop exch pop 0.01 mul cvi
  1525.   .max dup 10 idiv exch
  1526. setcacheparams
  1527. % Conditionally disable the character cache.
  1528. NOCACHE { 0 setcachelimit } if
  1529.  
  1530. (END CONFIG) VMDEBUG
  1531.  
  1532. % Initialize graphics.
  1533.  
  1534. .setdefaultscreen
  1535. initgraphics
  1536.  
  1537. % The interpreter relies on there being at least 2 entries
  1538. % on the graphics stack.  Establish the second one now.
  1539. gsave
  1540.  
  1541. % Define some control sequences as no-ops.
  1542. % This is a hack to get around problems
  1543. % in some common PostScript-generating applications.
  1544. <04> cvn { } def        % Apple job separator
  1545. <0404> cvn { } def        % two of the same
  1546. <1b> cvn { } def        % MS Windows LaserJet 4 prologue
  1547.                 % (UEL = ESC %-12345X)
  1548. <1b45> cvn { } def        % PJL reset prologue (ESC E)
  1549. <1b451b> cvn { } def        % PJL reset epilogue (ESC E + UEL)
  1550. <041b> cvn { } def        % MS Windows LaserJet 4 epilogue (^D + UEL)
  1551. (\001M) cvn            % TBCP initiator
  1552.  { currentfile /TBCPDecode filter cvx exec
  1553.  } bind def
  1554. /@PJL                % H-P job control
  1555.  { currentfile //=string readline { pop } if
  1556.  } bind def
  1557.  
  1558. % If we want a "safer" system, disable some obvious ways to cause havoc.
  1559. .currentglobal true .setglobal
  1560. /SAFETY 2 dict
  1561.   dup /safe false put
  1562.   dup /tempfiles 10 dict readonly put
  1563. readonly def
  1564. .setglobal
  1565.  
  1566. % Convert a path name into a string suitable for filenameforall
  1567. % For example: (a\\b*?c) to (a\\\\b\\*\\?c)
  1568. /.makepathtemplate {    % str1 -- str2
  1569.    dup length dup add string 0    % result string up to twice the size
  1570.    0 1 4 index length 1 sub {
  1571.      3 index exch get
  1572.      dup 92 eq {        % \ -> \\
  1573.         2 index 2 index 92
  1574.         put
  1575.         exch 1 add exch
  1576.      } 
  1577.      if
  1578.      dup 42 eq {        % * -> \*
  1579.         2 index 2 index 92
  1580.         put
  1581.         exch 1 add exch
  1582.      } 
  1583.      if
  1584.      dup 63 eq {        % ? -> \?
  1585.         2 index 2 index 92
  1586.         put
  1587.         exch 1 add exch
  1588.      } 
  1589.      if
  1590.      2 index 2 index 3 -1 roll put 1 add
  1591.    } for
  1592.    0 exch getinterval exch pop
  1593. } bind def
  1594.  
  1595. /.locksafe {
  1596.   SAFETY /safe get not {
  1597.     <<
  1598.       /PermitFileReading [
  1599.         currentuserparams /PermitFileReading get aload pop
  1600.     { .makepathtemplate 
  1601.           dup .filenamedirseparator concatstrings (*) concatstrings 
  1602.       exch        % put string below this procedure
  1603.     }
  1604.         /LIBPATH .systemvar { 1 index exec } forall
  1605.         /FONTPATH .systemvar  { 1 index exec } forall
  1606.     currentsystemparams /GenericResourceDir get 1 index exec 
  1607.     currentsystemparams /FontResourceDir get exch exec
  1608.       ]
  1609.       /LockFilePermissions true
  1610.     >> setuserparams
  1611.   }
  1612.   if
  1613.   mark /.LockSafetyParams true currentdevice .putdeviceprops pop pop
  1614.   //SAFETY /safe //true .forceput % overrides readonly
  1615. } .bind executeonly odef
  1616.  
  1617. /.setsafe
  1618. {
  1619.   SAFETY /safe get not {
  1620.     <<
  1621.       PARANOIDSAFER {        % only PARANOIDSAFER locks down reading files
  1622.         /PermitFileReading [ ]
  1623.       } if
  1624.       /PermitFileWriting [ ]
  1625.       /PermitFileControl [ ]
  1626.     >> setuserparams
  1627.   }
  1628.   if
  1629.   .locksafe
  1630. } .bind executeonly odef
  1631.  
  1632. /deletefile {
  1633.   count 1 lt {
  1634.     //deletefile /stackunderflow signalerror
  1635.   }
  1636.   if
  1637.   dup { deletefile } stopped {
  1638.     pop //deletefile $error /errorname get signalerror
  1639.   } {
  1640.     % deletefile succeeded. Remove from tempfile list if present
  1641.     //SAFETY /tempfiles get exch cvn 2 copy known {
  1642.       .forceundef
  1643.     } {
  1644.       pop pop
  1645.     }
  1646.     ifelse
  1647.   }
  1648.   ifelse
  1649. } .bind executeonly odef
  1650.  
  1651. % If a file is opened with .tempfile with SAFER not (yet) set,
  1652. % the file can be deleted later, even if SAFER is set.
  1653. /.tempfile {
  1654.   .tempfile    % filename file
  1655.   //SAFETY /tempfiles get 2 index true .forceput
  1656. } .bind executeonly odef
  1657.  
  1658. % If we are running in SAFER mode, lock things down
  1659. SAFER { .setsafe } if
  1660.  
  1661. % If we delayed binding, make it possible to do it later.
  1662. /.bindnow {
  1663.   //systemdict begin .bindoperators end
  1664.   % Temporarily disable the typecheck error.
  1665.   errordict /typecheck 2 copy get
  1666.   errordict /typecheck { pop } put    % pop the command
  1667.   0 1 .delaycount 1 sub { .delaybind exch get .bind pop } for
  1668.   //systemdict /.delaybind {} .forceput    % reclaim the space
  1669.   //systemdict /.bindnow .forceundef    % ditto
  1670.   put
  1671.   //systemdict /.forcedef .forceundef        % remove temptation
  1672.   //systemdict /.forceput .forceundef        % ditto
  1673.   //systemdict /.forceundef .forceundef        % ditto
  1674. } .bind odef
  1675.  
  1676. % Turn off array packing, since some PostScript code assumes that
  1677. % procedures are writable.
  1678. false setpacking
  1679.  
  1680. (END INIT) VMDEBUG
  1681.  
  1682. /.currentuserparams where {
  1683.   pop
  1684.     % Remove real user params from psuserparams.
  1685.   mark .currentuserparams counttomark 2 idiv {
  1686.     pop psuserparams exch undef
  1687.   } repeat pop
  1688.     % Update the copy of the user parameters.
  1689.   mark .currentuserparams counttomark 2 idiv {
  1690.     userparams 3 1 roll .forceput    % userparams is read-only
  1691.   } repeat pop
  1692.     % Turn on idiom recognition, if available.
  1693.   currentuserparams /IdiomRecognition known {
  1694.     /IdiomRecognition true .definepsuserparam
  1695.   } if
  1696.   psuserparams readonly pop
  1697.   systemdict /.definepsuserparam undef
  1698.     % Save a copy of userparams for use with save/restore
  1699.     % (and, if implemented, context switching).
  1700.   .currentglobal false .setglobal
  1701.      mark userparams { } forall .dicttomark readonly
  1702.      /userparams exch .forcedef        % systemdict is read-only
  1703.   .setglobal
  1704. } if
  1705. /.currentsystemparams where {
  1706.   pop
  1707.     % Remove real system params from pssystemparams.
  1708.   mark .currentsystemparams counttomark 2 idiv {
  1709.     pop pssystemparams exch .forceundef
  1710.   } repeat pop
  1711. } if
  1712.  
  1713. % Conditionally turn image interpolation on or off.
  1714. currentdict /INTERPOLATE known not { (%END INTERPOLATE) .skipeof } if
  1715.  
  1716. /.interpolate {
  1717.   dup /Interpolate .knownget not { //false } if
  1718.   /INTERPOLATE .systemvar ne {
  1719.     dup gcheck .currentglobal exch .setglobal
  1720.     exch dup length dict copy
  1721.     dup /Interpolate /INTERPOLATE .systemvar put
  1722.     exch .setglobal
  1723.   } if
  1724. } bind odef
  1725.  
  1726. /colorimage
  1727.   { /INTERPOLATE .systemvar
  1728.       { .currentglobal                    % w h bit [] {}...{} multi ncomp glob
  1729.         //false .setglobal
  1730.         9 dict begin                      % w h bit [] {}...{} multi ncomp glob
  1731.         2 index { 1 index 7 add } { 8 } ifelse
  1732.         copy gsave pop                    % preserve the arguments
  1733.         { 0 /DeviceGray 0 /DeviceRGB /DeviceCMYK }
  1734.         1 index get setcolorspace         % ... glob w h bit [] {}...{} multi ncomp
  1735.         {0 1 0 1 0 1 0 1}
  1736.         1 index 2 mul 0 exch              % ... glob w h bit [] {}...{} multi ncomp {0 1 ...} 0 2*ncomp
  1737.         getinterval /Decode exch def      % ... glob w h bit [] {}...{} multi ncomp
  1738.         exch dup                          % ... glob w h bit [] {}...{} ncomp multi multi
  1739.         /MultipleDataSources exch def     % ... glob w h bit [] {}...{} ncomp multi
  1740.         { array astore} { pop } ifelse    % ... glob w h bit [] [{}...{}]
  1741.         /DataSource exch def              % ... glob w h bit []
  1742.         /ImageMatrix exch def             % ... glob w h bit
  1743.         /BitsPerComponent exch def        % ... glob w h
  1744.         /Height exch def                  % ... glob w
  1745.         /Width exch def                   % ... glob 
  1746.         /ImageType 1 def
  1747.         /Interpolate //true def
  1748.         .setglobal currentdict end        % ... <<>>
  1749.         image grestore
  1750.         exch { 4 add } { 6 } ifelse
  1751.         { pop } repeat                    % -
  1752.       }
  1753.       { colorimage
  1754.       }
  1755.     ifelse
  1756.   } bind odef
  1757.  
  1758. /image
  1759.   { dup type /dicttype eq
  1760.       { dup /ImageType get 3 eq
  1761.           { .currentglobal //false .setglobal exch
  1762.             dup length dict copy begin .setglobal 
  1763.             /DataDict DataDict .interpolate def
  1764.             /MaskDict MaskDict .interpolate def
  1765.             currentdict end
  1766.           }
  1767.           { .interpolate 
  1768.           }
  1769.         ifelse
  1770.         image
  1771.       }
  1772.       { /INTERPOLATE .systemvar
  1773.           { .currentglobal //false .setglobal
  1774.             8 dict begin .setglobal
  1775.             /ImageType 1 def
  1776.             /DataSource 1 index def
  1777.             /ImageMatrix 2 index def
  1778.             /BitsPerComponent 3 index def
  1779.             /Decode {0 1} def
  1780.             /Height 4 index def
  1781.             /Width 5 index def
  1782.             /Interpolate //true def
  1783.             currentdict end
  1784.             gsave /DeviceGray setcolorspace image grestore
  1785.             5 { pop } repeat
  1786.           }
  1787.           { image
  1788.           }
  1789.         ifelse
  1790.       }
  1791.     ifelse
  1792.   } bind odef
  1793.  
  1794. /imagemask {
  1795.   dup type /dicttype eq {
  1796.     .interpolate imagemask
  1797.   } {
  1798.     /INTERPOLATE .systemvar {
  1799.       .currentglobal //false .setglobal
  1800.       8 dict begin .setglobal
  1801.       /ImageType 1 def
  1802.       /DataSource 1 index def
  1803.       /ImageMatrix 2 index def
  1804.       /BitsPerComponent 1 def
  1805.       2 index { {1 0} } { {0 1} } ifelse /Decode exch def
  1806.       /Height 4 index def
  1807.       /Width 5 index def
  1808.       /Interpolate //true def
  1809.       currentdict end imagemask 5 { pop } repeat
  1810.     } {
  1811.       imagemask
  1812.     } ifelse
  1813.   } ifelse
  1814. } bind odef
  1815.  
  1816. currentdict /.interpolate undef
  1817.  
  1818. %END INTERPOLATE
  1819.  
  1820. % Establish local VM as the default.
  1821. false /setglobal where { pop setglobal } { .setglobal } ifelse
  1822. $error /.nosetlocal false put
  1823.  
  1824. (END GLOBAL) VMDEBUG
  1825.  
  1826. /.savelocalstate where {
  1827.     % If we might create new contexts, save away copies of all dictionaries
  1828.     % referenced from systemdict that are stored in local VM,
  1829.     % and also save a copy of the initial gstate.
  1830.   pop .savelocalstate
  1831. } {
  1832.     % If we're *not* running in a multi-context system and FAKEFONTS is
  1833.     % defined, add the fake fonts to LocalFontDirectory.
  1834.   .definefakefonts    % current VM is local
  1835. } ifelse
  1836.  
  1837. % Remove systemdict entries for things that have been bound in where used
  1838. % and that shouldn't be accessible by name, and close up systemdict.
  1839. currentdict /filterdict .undef
  1840. currentdict /.cidfonttypes .undef
  1841. currentdict /.colorrenderingtypes .undef
  1842. currentdict /.formtypes .undef
  1843. currentdict /.halftonetypes .undef
  1844. currentdict /.imagetypes .undef
  1845. currentdict /.imagemasktypes .undef
  1846. currentdict /.patterntypes .undef
  1847. currentdict /.shadingtypes .undef
  1848. currentdict /.wheredict .undef
  1849. end
  1850.  
  1851. % Clean up VM, and enable GC.
  1852. /vmreclaim where
  1853.  { pop NOGC not { 2 vmreclaim 0 vmreclaim } if
  1854.  } if
  1855. DELAYBIND not {
  1856.   systemdict /.forcedef .undef        % remove temptation
  1857.   systemdict /.forceput .undef        % ditto
  1858.   systemdict /.forceundef .undef    % ditto
  1859. } if
  1860. WRITESYSTEMDICT not { systemdict readonly pop } if
  1861.  
  1862. (END GC) VMDEBUG
  1863.  
  1864. % The Adobe AGM_Core used by Illustrator 9 has some code that breaks
  1865. % if the 'product' is not (Adobe PostScript Parser). A bug has been
  1866. % submitted to Adobe since this also fails with Acrobat Distiller.
  1867. % As a temporary work around, the following HACK will work for
  1868. % devices without spot color support. Once Ghostscript can
  1869. % support DeviceN and spot color separations this will need to
  1870. % be 'true' in some cases.
  1871. userdict /AGM_preserve_spots false put
  1872.  
  1873. % The interpreter will run the initial procedure (start).
  1874.