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

  1. %    Copyright (C) 1992, 1996 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: impath.ps,v 1.2 2000/09/19 18:29:11 lpd Exp $
  16. % impath.ps
  17. % Reverse-rasterize a bitmap to produce a Type 1 outline.
  18. % (This was formerly a Ghostscript operator implemented in C.)
  19.  
  20. %    <image> <width> <height> <wx> <wy> <ox> <oy> <string>
  21. %      type1imagepath <substring>
  22. %        Converts an image (bitmap) description of a character into
  23. %          a scalable description in Adobe Type 1 format.  The
  24. %          current transformation matrix should be the same as the
  25. %          FontMatrix of the font in which this character will be
  26. %          used: this establishes the scaling relationship between
  27. %          image pixels (the image is assumed to be 1 unit high in
  28. %          user space) and the character coordinate system used in
  29. %          the scalable description.  wx and wy are the character
  30. %          width, and ox and oy are the character origin relative
  31. %          to the lower left corner of the bitmap, in *pixels*.
  32. %        The image is assumed to be stored in left-to-right,
  33. %          top-to-bottom order.  Note that this is not consistent
  34. %          with the `image' operator's interpretation of the CTM.
  35. %        All coordinates in the scalable description are rounded to
  36. %          integers, so the coefficients in the FontMatrix should
  37. %          be on the order of 1/N for some value of N that is
  38. %          either a multiple of the height/width or is large
  39. %          compared to the width and height.  (There is a
  40. %          convention, which some PostScript programs rely on, that
  41. %          N=1000.)
  42. %        Note that the encoded description has *not* been subjected
  43. %          to CharString encryption, which is necessary before the
  44. %          description can be given to type1addpath: to do this,
  45. %          follow the type1imagepath with
  46. %            4330 exch dup .type1encrypt exch pop
  47. %        If the description is too complex to fit into the supplied
  48. %          string, a limitcheck error results.  A good rule of
  49. %          thumb is that the size of the string should be about 6
  50. %          times the number of 1-bits in the image that are not
  51. %          completely surrounded by other 1-bits.
  52.  
  53. % Import the Type 1 opcodes.
  54. (type1ops.ps) runlibfile
  55.  
  56. 100 dict
  57. dup /type1imagepath_dict exch def
  58. begin
  59.  
  60. /rc { round cvi } bind def
  61. /moving [/rmoveto /hmoveto /vmoveto] def
  62. /drawing [/rlineto /hlineto /vlineto] def
  63.  
  64. % Convert the current path to a Type 1 token array.
  65. /putxy            % x y ops -> cs_elements
  66.  { 3 -1 roll dup x sub rc exch /x exch def
  67.    3 -1 roll dup y sub rc exch /y exch def
  68.    % stack: ops dx dy
  69.    dup 0 eq
  70.     { % dy = 0, use hmoveto/lineto
  71.       pop exch 1 get
  72.     }
  73.     { 1 index 0 eq
  74.        { % dx = 0, use vmoveto/lineto
  75.          exch pop exch 2 get
  76.        }
  77.        { % use rmoveto/rlineto
  78.          3 -1 roll 0 get
  79.        }
  80.       ifelse
  81.     }
  82.    ifelse
  83.  } bind def
  84. /pathtotype1        % -> charstack
  85.  { 3 dict begin /x 0 def /y 0 def
  86.    mark
  87.    { moving putxy
  88.    }
  89.    { drawing putxy
  90.    }
  91.    { % Convert curve to relative form
  92.      x y 3
  93.       { exch neg 7 index add rc
  94.     exch neg 6 index add rc
  95.     8 -2 roll
  96.       }
  97.      repeat /y exch def /x exch def
  98.      1 index 0 eq 5 index 0 eq and    % dy1=dx3=0, hv
  99.       { 5 -1 roll pop exch pop /hvcurveto
  100.       }
  101.       { dup 0 eq 6 index 0 eq and    % dx1=dy3=0, vh
  102.          { 6 -1 roll pop pop /vhcurveto
  103.      }
  104.      { /rrcurveto            % none of the above
  105.      }
  106.     ifelse
  107.       }
  108.      ifelse
  109.    }
  110.    { /closepath
  111.    }
  112.    pathforall end
  113.  } bind def
  114.  
  115. end    % type1imagepath_dict
  116.  
  117. % The main program
  118. /type1imagepath        % image width height wx wy ox oy string ->
  119.             % substring
  120.  { type1imagepath_dict begin
  121.    /tsave save def
  122.    /ostring exch def
  123.    /oy exch def   /ox exch def
  124.    /wy exch def   /wx exch def
  125.    /height exch def   /width exch def
  126.    /data exch def
  127.  
  128.    /ofilter ostring /NullEncode filter def
  129.    /raster width 7 add 8 idiv def
  130.  
  131. % Construct the coordinate transformation.
  132.    height dup scale
  133.      matrix currentmatrix matrix invertmatrix setmatrix
  134.  
  135. % Determine the left side bearing.
  136.    /lsbx width
  137.    0 1 width 1 sub
  138.     { dup dup 8 idiv 0 exch
  139.       raster raster height mul 1 sub
  140.        { data exch get or }
  141.       for exch 8 mod bitshift 128 and 0 ne
  142.        { exch pop exit }
  143.       if pop
  144.     }
  145.    for def
  146.  
  147. % Compute and encode the origin, width, and side bearing.
  148.    mark
  149.    ox oy dtransform
  150.      rc /opty exch def   rc /optx exch def
  151.    wx wy dtransform
  152.      rc /iwy exch def    rc /iwx exch def
  153.    lsbx ox sub 0 dtransform
  154.      rc /ilsby exch def   rc /ilsbx exch def
  155.    ilsbx
  156.    iwy 0 ne ilsby 0 ne or
  157.     { ilsby iwx iwy /sbw }
  158.     { iwx /hsbw }
  159.    ifelse
  160.    ofilter charstack_write
  161.  
  162. % Flip over the Y axis, because the image is stored top-to-bottom.
  163.    [1 0 0 -1 0 height] concat
  164. % Account for the character origin.
  165.    lsbx oy translate
  166. % Trace the outline.
  167.    newpath
  168.    width height data .imagepath
  169.    gsave matrix setmatrix pathtotype1 grestore
  170.    ofilter charstack_write
  171. % Terminate the output
  172.    mark /endchar ofilter charstack_write
  173.  
  174.    ofilter fileposition ofilter closefile    % flush buffers
  175.    ostring 0 3 -1 roll getinterval
  176.    tsave restore
  177.    end
  178.  } bind def
  179.