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_pfile.ps < prev    next >
Text File  |  2000-12-05  |  5KB  |  130 lines

  1. %    Copyright (C) 1994, 1995 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_pfile.ps,v 1.2 2000/09/19 18:29:11 lpd Exp $
  16. % Runtime support for minimum-space fonts and packed files.
  17.  
  18. % ****** NOTE: This file must be kept consistent with
  19. % ****** packfile.ps and wrfont.ps.
  20.  
  21. % ---------------- Packed file support ---------------- %
  22.  
  23. % A packed file is the concatenation of several file groups, each of which
  24. % is the result of compressing several files concatenated together.
  25. % The packed file begins with a procedure that creates an appropriate
  26. % decoding filter for each file group, as follows:
  27. %    <group-subfile-filter> -proc- <group-decode-filter>
  28. % Thus, accessing an individual file requires 4 parameters:
  29. % the starting address and length of the outer compressed file,
  30. % and the starting address and length of the inner file.
  31. /.packedfilefilter    % <file> <ostart> <olength> <istart> <ilength>
  32.             %   .packedfilefilter <filter>
  33.  { 4 index systemdict begin token pop end 6 1 roll
  34.     % Stack: fproc file ostart olength istart ilength
  35.    4 index 5 -1 roll setfileposition
  36.     % Stack: fproc file olength istart ilength
  37.    4 -2 roll () /SubFileDecode filter
  38.     % Stack: fproc istart ilength ofilter
  39.    4 -1 roll exec
  40.     % Filters don't support setfileposition, so we must skip data
  41.     % by reading it into a buffer.  We rely on the fact that
  42.     % save/restore don't affect file positions.
  43.     % Stack: istart ilength dfilter
  44.    save exch 1000 string
  45.     % Stack: istart ilength save dfilter scratch
  46.    4 index 1 index length idiv { 2 copy readstring pop pop } repeat
  47.    2 copy 0 8 -1 roll 2 index length mod getinterval readstring pop pop pop
  48.     % Stack: ilength save dfilter
  49.    exch restore exch () /SubFileDecode filter
  50.  } bind def
  51.  
  52. % Run a packed library file.
  53. /.runpackedlibfile    % <filename> <ostart> <olength> <istart> <ilength>
  54.             %   .runpackedlibfile
  55.  { 5 -1 roll findlibfile
  56.     { exch pop dup 6 2 roll .packedfilefilter
  57.       currentobjectformat exch 1 setobjectformat run
  58.       setobjectformat closefile
  59.     }
  60.     { 5 1 roll /findlibfile load /undefinedfilename signalerror
  61.     }
  62.    ifelse
  63.  } bind def
  64.  
  65. % ---------------- Compacted font support ---------------- %
  66.  
  67. % Compacted fonts written by wrfont.ps depend on the existence and
  68. % specifications of the procedures and data in this section.
  69.  
  70. /.compactfontdefault mark
  71.     /PaintType 0
  72.     /FontMatrix [0.001 0 0 0.001 0 0] readonly
  73.     /FontType 1
  74.     /Encoding StandardEncoding
  75. .dicttomark readonly def
  76.  
  77. /.checkexistingfont    % <fontname> <uid> <privatesize> <fontsize>
  78.             %   .checkexistingfont
  79.             %   {} (<font> on d-stack)
  80.             % <fontname> <uid> <privatesize> <fontsize>
  81.             %   .checkexistingfont
  82.             %   -save- --restore-- (<font> on d-stack)
  83.  { FontDirectory 4 index .knownget
  84.     { dup /UniqueID .knownget
  85.        { 4 index eq exch /FontType get 1 eq and }
  86.        { pop false }
  87.       ifelse
  88.     }
  89.     { false
  90.     }
  91.    ifelse
  92.     { save /restore load 6 2 roll }
  93.     { {} 5 1 roll }
  94.    ifelse
  95.    dict //.compactfontdefault exch .copydict begin
  96.    dict /Private exch def
  97.    Private begin
  98.      /MinFeature {16 16} def
  99.      /Password 5839 def
  100.      /UniqueID 1 index def
  101.    end
  102.    /UniqueID exch def
  103.    /FontName exch def
  104.  } bind def
  105.  
  106. /.knownEncodings [
  107.    ISOLatin1Encoding
  108.    StandardEncoding
  109.    SymbolEncoding
  110. ] readonly def
  111.  
  112. /.readCharStrings    % <count> <encrypt> .readCharStrings <dict>
  113.  { exch dup dict dup 3 -1 roll
  114.     { currentfile token pop dup type /integertype eq
  115.        { dup -8 bitshift //.knownEncodings exch get exch 255 and get } if
  116.       currentfile token pop dup type /nametype eq
  117.        { 2 index exch get
  118.        }
  119.        {    % Stack: encrypt dict dict key value
  120.      4 index { 4330 exch dup .type1encrypt exch pop } if
  121.      readonly
  122.        }
  123.       ifelse put dup
  124.     }
  125.    repeat pop exch pop
  126.  } bind def
  127.