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_ccfnt.ps < prev    next >
Text File  |  2000-12-05  |  2KB  |  76 lines

  1. %    Copyright (C) 1994, 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_ccfnt.ps,v 1.4 2000/09/19 18:29:11 lpd Exp $
  16. % Find and register all the precompiled font operators in systemdict.
  17.  
  18. /registerfont            % <fontname> <fontdict> registerfont <font>
  19.  { DEBUG { (Registering ) print 1 index = } if
  20.    dup begin
  21.      Encoding type /nametype eq
  22.       { Encoding .findencoding /Encoding exch def
  23.       }
  24.      if
  25.      dup /PrefEnc known
  26.       { PrefEnc type /nametype eq
  27.      { PrefEnc .findencoding /PrefEnc exch def
  28.      }
  29.     if
  30.       }
  31.      if
  32.      dup /FDepVector known
  33.       { /FDepVector [ FDepVector
  34.      { .FontDirectory 1 index .knownget
  35.         { exch pop }
  36.         { ccfonts 1 index .knownget
  37.            { registerfont
  38.            }
  39.            { Fontmap 1 index known
  40.           { findfont }
  41.           { pop NullFont }
  42.          ifelse
  43.            }
  44.           ifelse
  45.         }
  46.        ifelse
  47.      }
  48.     forall ] readonly def
  49.       }
  50.      if
  51.    end
  52.    % Use the value of definefont appropriate at run-time, not bind-time
  53.    /definefont load exec
  54.  } bind odef
  55. % Bind recursive call (bind descends into oparrays: feature!)
  56. /registerfont dup load bind def
  57.  
  58. /.loadinitialfonts {
  59.    //.loadinitialfonts exec
  60.    /ccfonts mark
  61.      0 1 null .getccfont 1 sub { .getccfont dup /FontName get exch } for
  62.    .dicttomark def
  63.         % Make sure these fonts are registered as "resources".
  64.    currentfile {
  65.      pop ccfonts
  66.       { .FontDirectory 2 index known { pop pop } { registerfont pop } ifelse }
  67.      forall
  68.   } .execasresource
  69.   currentdict /ccfonts .undef
  70. } bind def
  71.  
  72. currentdict /registerfont .undef
  73.