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

  1. %    Copyright (C) 1990, 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: ps2epsi.ps,v 1.4 2000/09/19 18:29:11 lpd Exp $
  16. % Convert an arbitrary PostScript file to an EPSI file.
  17. %
  18. % Please do not contact these users if you have questions.  They no longer
  19. % have the time, interest, or current expertise to keep this code working.
  20. % If you find bugs, please send proposed fixes to bug-gs@aladdin.com.
  21. %
  22. % Bug fix 2000-04-11 by lpd: if a font didn't have a FontName (which is the
  23. %   case for bitmap fonts produced by recent versions of dvips), setfont
  24. %   caused an error.
  25. % Bug fix 8/21/99 by lpd: many of the margin and width computations were
  26. %   wrong (off by 1).  The code only "worked" because the bugs were
  27. %   (mostly) in conservative directions.
  28. % Modified 3/17/98 by lpd to make it possible to run this file without
  29. %   running the ps2epsi script first, for debugging.
  30. % Bug fix 9/29/97 by lpd <ghost@aladdin.com>: if the page size wasn't an
  31. %   exact multiple of 8 bits, an incorrect bounding box (or a rangecheck
  32. %   error) could occur.
  33. % Patched 7/26/95 by
  34. %    Greg P. Kochanski <gpk@bell-labs.com>
  35. %   to add many new DSC comments and make the comments conforming.
  36. % Original version contributed by
  37. %    George Cameron <george@bio-medical-physics.aberdeen.ac.uk>
  38. %
  39.  
  40. % Initialize, and redefine copypage and showpage.
  41.  
  42. % ps2edict is normally defined in the pre-loaded code created by the
  43. % ps2epsi script.
  44. /ps2edict where { pop } { /ps2edict 25 dict def } ifelse
  45. ps2edict begin
  46.  
  47.                 % The main procedure
  48.   /ps2epsi
  49.    {                % Open the file
  50.      outfile (w) file /epsifile exch def
  51.                     % Get the device parameters
  52.      currentdevice getdeviceprops .dicttomark
  53.      /HWSize get aload pop
  54.        /devheight exch def
  55.        /devwidth exch def
  56.      matrix defaultmatrix
  57.        /devmatrix exch def
  58.                 % Make a corresponding memory device
  59.      devmatrix devwidth devheight <ff 00>
  60.      makeimagedevice
  61.      /arraydevice exch def
  62.      arraydevice setdevice    % (does an erasepage)
  63.      /rowwidth devwidth 7 add 8 idiv def
  64.      /row rowwidth string def
  65.      /zerorow rowwidth string def    % all zero
  66.                 % Replace the definition of showpage
  67.      userdict /showpage { ps2edict begin epsipage end } bind put
  68.      userdict /setfont { ps2edict begin epsisetfont end } bind put
  69.    } def
  70.  
  71.  /epsifontdict 100 dict def
  72.  
  73.  /epsisetfont
  74.  {
  75.  % code here keeps a list of font names in dictionary epsifontdict
  76.  /tmpfont exch def
  77.  tmpfont /FontName known {
  78.    /tmpfontname tmpfont /FontName get def
  79.    epsifontdict tmpfontname known not { epsifontdict tmpfontname 0 put } if
  80.    epsifontdict tmpfontname 2 copy get 1 add put
  81.  } if
  82.  tmpfont setfont
  83.  } bind def
  84.  
  85. % Get a scan line from the memory device, zeroing any bits beyond
  86. % the device width.
  87. /getscanline {        % <device> <y> <string> getscanline <string>
  88.   dup 4 1 roll copyscanlines pop
  89.   16#ff00 devwidth 7 and neg bitshift 255 and
  90.   dup 0 ne {
  91.     1 index dup length 1 sub 2 copy get 4 -1 roll and put
  92.   } {
  93.     pop
  94.   } ifelse
  95. } bind def
  96.  
  97. /margintest {        % <y-start> <step> <y-limit> margintest <y-non-blank>
  98.             % <y-start> <step> <y-limit> margintest -
  99.   { dup arraydevice exch row getscanline
  100.     zerorow ne { exit } if pop
  101.   } for
  102. } bind def
  103.  
  104.  
  105.   /epsiNameStr 200 string def
  106.   /epsiNpages 0 def
  107.   /epsiNpageStr 20 string def
  108.   /epsipage
  109.    {
  110.      /epsiNpages epsiNpages 1 add def
  111.      /loopcount devheight 1 sub def
  112.  
  113.      % Find top margin -- minimum Y of non-blank scan line.
  114.      -1 0 1 loopcount margintest
  115.      dup -1 eq { (blank page!!\n) print quit }{ exch pop } ifelse 
  116.      /tm exch def
  117.  
  118.      % Find bottom margin -- maximum Y of non-blank scan line.
  119.      loopcount -1 0 margintest
  120.      /bm exch def
  121.      
  122.      % Initialise limit variables
  123.      /loopcount rowwidth 1 sub def
  124.      /lm loopcount def /lmb 0 def
  125.      /rm 0 def /rmb 0 def
  126.  
  127.      % Find left and right boundaries of image
  128.      tm 1 bm
  129.       { % Get more data
  130.     arraydevice exch row getscanline pop
  131.     % Scan from left to find first non-zero element
  132.     % We save first the element, then the index
  133.     -1 0 1 loopcount
  134.     { dup row exch get dup 0 ne { exch exit }{ pop pop } ifelse
  135.     } for
  136.     % If we found -1, row is blank ..
  137.     dup -1 ne 
  138.     { % Find the leftmost index
  139.           dup lm lt
  140.           % If the new index is less, we save index and element
  141.           { /lm exch def /lmb exch def }
  142.           % If the index is equal, we or the bits together
  143.           { lm eq { lmb or /lmb exch def }{ pop } ifelse
  144.           } ifelse
  145.       % Now find the rightmost index
  146.       loopcount -1 0
  147.           { dup row exch get dup 0 ne { exch exit }{ pop pop } ifelse
  148.           } for
  149.       dup rm gt
  150.           % If the new index is greater, we save index and element
  151.           { /rm exch def /rmb exch def }
  152.           % If the index is equal, or the bits
  153.           { rm eq { rmb or /rmb exch def } { pop } ifelse
  154.           } ifelse
  155.     } if
  156.     pop
  157.       } for
  158.  
  159.      % Now we find the real left & right bit positions
  160.      256 0 1 7
  161.      { exch 2 div dup lmb le { pop exit }{ exch pop } ifelse
  162.      } for
  163.      /lmb exch def
  164.  
  165.      1 7 -1 0
  166.      { exch dup dup rmb and eq { pop exit }{ 2 mul exch pop } ifelse
  167.      } for
  168.      /rmb exch def
  169.  
  170.      % Calculate the bounding box values.
  171.      % Note that these must be corrected to produce closed-open intervals.
  172.      /llx lm 8 mul lmb add def
  173.      /lly devheight bm sub 1 sub def
  174.      /urx rm 8 mul rmb add 1 add def
  175.      /ury devheight tm sub def
  176.  
  177.     % Write out the magic string and bounding box information
  178.      epsifile (%!PS-Adobe-2.0 EPSF-1.2\n) writestring
  179.      /epsititle where { pop epsifile epsititle writestring } if
  180.      /epsicreator where { pop epsifile epsicreator writestring } if
  181.      /epsicrdt where { pop epsifile epsicrdt writestring } if
  182.      /epsifor where { pop epsifile epsifor writestring } if
  183.      epsifile flushfile
  184.  
  185.     % Write out the page count:
  186.      epsifile (%%Pages: ) writestring
  187.      epsifile epsiNpages epsiNpageStr cvs writestring
  188.      epsifile (\n) writestring
  189.      epsifile flushfile
  190.  
  191.     % Write out the list of used fonts:
  192.      epsifile (%%DocumentFonts:) writestring
  193.      epsifontdict {
  194.                     epsifile ( ) writestring
  195.                     pop epsiNameStr cvs epsifile exch writestring
  196.                     } forall
  197.      epsifile (\n) writestring
  198.      epsifile flushfile
  199.  
  200.      epsifile (%%BoundingBox: ) writestring
  201.      epsifile llx write==only epsifile ( ) writestring
  202.      epsifile lly write==only epsifile ( ) writestring
  203.      epsifile urx write==only epsifile ( ) writestring
  204.      epsifile ury write==
  205.      epsifile (%%BeginPreview: ) writestring
  206.      epsifile urx llx sub write==only epsifile ( ) writestring
  207.      epsifile bm tm sub 1 add write==only epsifile ( 1 ) writestring
  208.      epsifile bm tm sub 1 add write==
  209.      epsifile flushfile
  210.  
  211.     % Define character and bit widths for the output line buffer:
  212.      /cwidth rm lm sub 1 add def
  213.      /bwidth cwidth 8 mul def
  214.      /owidth urx llx sub 7 add 8 idiv def
  215.      /out cwidth string def
  216.  
  217.      % Create a 1-bit-high device for bitblt to align with the bbox
  218.      gsave
  219.      matrix cwidth 8 mul 1 <00 ff> makeimagedevice setdevice
  220.  
  221.      % 'image' a zero string to clear the line device
  222.      bwidth 1 1 matrix cwidth string image
  223.  
  224.      tm 1 bm
  225.       { % Get a scan line interval from the array device
  226.     arraydevice exch row copyscanlines lm cwidth getinterval
  227.     lmb 0 gt
  228.     { % 'image' it into the line device with the lmb offset
  229.       bwidth 1 1 [1 0 0 1 lmb 0] 5 -1 roll image
  230.       % Now we get the modified scan line
  231.       currentdevice 0 out copyscanlines 0 owidth getinterval
  232.     } if
  233.     % Write out the hex data
  234.     epsifile (% ) writestring 
  235.     epsifile exch writehexstring
  236.     epsifile (\n) writestring
  237.       } for
  238.  
  239.      epsifile (%%EndImage\n) writestring
  240.      epsifile (%%EndPreview\n) writestring
  241.      epsifile flushfile
  242.      grestore
  243.      erasepage initgraphics
  244.  
  245.      DonePage 0 1 put
  246.    } bind def
  247.  
  248.  
  249. (outfile) getenv
  250.   { /outfile exch def 
  251.     ps2epsi
  252.  
  253.     /DonePage 1 string def
  254.     (%stdin) (r) file cvx execute0
  255.     DonePage 0 get 0 eq { showpage } if
  256.   } if
  257.  
  258. end
  259. quit
  260.