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

  1. %    Copyright (C) 1989, 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: gs_epsf.ps,v 1.2 2000/09/19 18:29:11 lpd Exp $
  16. % Allow the interpreter to recognize MS-DOS EPSF file headers, and skip to
  17. % the PostScript section of the file.
  18.  
  19. /.runnoepsf /run load def
  20. /.epsfheader <C5D0D3C6> def
  21. /run
  22.  { dup type /filetype ne { (r) file } if
  23.         % Check for MS-DOS EPSF file (see Red Book p. 729).
  24.    true exch 0 1 3
  25.     {        % Stack: true file index
  26.       1 index read dup { pop dup .epsfheader 3 index get eq } if
  27.        { pop pop }    % if matched, don't need the character
  28.        {    % unread characters (wasn't EPSF)
  29.      2 index exch unread     % unread mismatch character
  30.      dup {   % loop unreading backwards in .epsfheader
  31.        1 sub dup .epsfheader exch get 2 index exch unread
  32.      } repeat pop
  33.      exch not exch exit    % change true to false
  34.        }
  35.       ifelse
  36.     }
  37.    for exch    % Stack: file true/false
  38.     {        % This block is executed if the file is MS-DOS EPSF.
  39.         % Build up the little-endian byte offset and length.
  40.       2
  41.     { 1 0 4
  42.        { 2 index read not { pop exit } if % if EOF, let error happen
  43.          2 index mul add exch 256 mul exch
  44.        }
  45.       repeat exch pop exch
  46.     }
  47.       repeat
  48.         % Stack: offset length file
  49.         % Use flushfile to skip quickly to the start of the
  50.         % PostScript section.
  51.       dup 4 -1 roll 12 sub () /SubFileDecode filter flushfile
  52.         % Now interpret the PostScript.
  53.       exch () /SubFileDecode filter cvx .runexec
  54.     }
  55.     { .runnoepsf
  56.     }
  57.    ifelse
  58.  } odef
  59.