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

  1. %    Copyright (C) 1994 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: traceimg.ps,v 1.2 2000/09/19 18:29:11 lpd Exp $
  16. % traceimg.ps
  17. % Trace the data supplied to the 'image' operator.
  18.  
  19. % This code currently handles only the (Level 2) dictionary form of image,
  20. % with a single data source and 8-bit pixels.
  21.  
  22. /traceimage            % <dict> traceimage -
  23.  { currentcolorspace == (setcolorspace\n) print
  24.    (<<) print
  25.    dup { (\t) print exch ==only ( ) print == } forall
  26.    (>>\n) print flush
  27.    begin /i_left Width Height mul store /i_dict currentdict store end
  28.     { i_left 0 le { exit } if
  29.       i_dict /DataSource get exec
  30.       dup type /filetype eq
  31.        { i_buf 0 i_left 32 min getinterval readstring pop
  32.        } if
  33.       dup (%stdout) (w) file exch writehexstring (\n) print flush
  34.       i_left exch length sub /i_left exch def
  35.     } loop
  36.  } bind odef
  37.  
  38. /image /traceimage load def
  39. /i_left 0 def
  40. /i_dict null def
  41. /i_buf 32 string def
  42.