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_cidfn.ps < prev    next >
Text File  |  2000-12-05  |  12KB  |  388 lines

  1. %    Copyright (C) 1995, 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_cidfn.ps,v 1.17 2000/09/19 18:29:11 lpd Exp $
  16. % ProcSet for implementing CIDFont and CIDMap resources.
  17. % When this is run, systemdict is still writable.
  18.  
  19. % ---------------- Defining CIDFont resources ---------------- %
  20.  
  21. % Define a CIDFont resource.  This is the defineresource implementation for
  22. % the CIDFont resource category.
  23.  
  24. /.checkfonttype {    % <cidfont> <fonttype> .checkfonttype <cidfont> <new?>
  25.   1 index /FID known {
  26.     1 index /FontType get ne {
  27.       /definefont cvx /invalidfont signalerror
  28.     } if false
  29.   } {
  30.     1 index /FontType 3 -1 roll put true
  31.   } ifelse
  32. } bind def
  33.  
  34. /.cidfonttypes where { pop } { /.cidfonttypes 6 dict def } ifelse
  35. .cidfonttypes
  36.  
  37. 30 dict begin
  38.  
  39. % The key in .cidfonttypes is the CIDFontType value;
  40. % the value is a procedure that takes a font name and the CIDFont dictionary
  41. % and replaces the latter with a real font.
  42.  
  43. % ------ CIDFontType 0 (FontType 9) ------ %
  44.  
  45. % We add the following entries to the CIDFont dictionary, in addition to
  46. % the ones documented by Adobe:
  47. %    SubrCache - dictionary for caching Subr arrays
  48. % For CIDFonts where we read the data from disk incrementally:
  49. %    GlyphData is 0 (arbitrary)
  50. %    DataSource - a ReusableStreamDecode filter for the data
  51. % We also add a FID entry, and possibly a Subrs entry, to each element of
  52. % FDArray.
  53.  
  54. dup 0 {
  55.   9 .checkfonttype {
  56.     /CIDInit /ProcSet findresource begin
  57.     .completefont9
  58.     end
  59.   } if
  60.   1 index exch .buildfont9 exch pop
  61. } bind put
  62.  
  63. % Add entries to a new CIDFontType 0 font per documentation (FontMatrix)
  64. % or for .buildfont9 (FDArray.Private.Subrs).
  65. /.completefont9 {    % <cidfont0> .completefont9 <cidfont0>
  66.   currentglobal 3 1 roll dup gcheck setglobal
  67.   dup /FontMatrix known not {
  68.     dup /FontMatrix [0.001 0 0 0.001 0 0] put
  69.     dup /FDArray get {
  70.       /FontMatrix get [1000 0 0 1000 0 0] 1 index concatmatrix pop
  71.     } forall
  72.   } if
  73.   dup /FDArray get {
  74.         % Read the Subrs if necessary.
  75.     dup /Private get dup /Subrs known not {
  76.       dup /SubrCount .knownget {
  77.         % Stack: font Private SubrCount
  78.     currentglobal 3 1 roll 1 index gcheck setglobal
  79.     array 1 index /Subrs 3 -1 roll put
  80.         % Stack: font global Private
  81.     2 index begin begin .loadsubrs end end
  82.     setglobal
  83.       } {
  84.     pop
  85.       } ifelse readonly pop
  86.     } {
  87.       pop pop
  88.     } ifelse
  89.   } forall
  90.   3 -1 roll setglobal
  91. } bind def
  92.  
  93. % Read some Subrs for the current Type 1 subfont.
  94. % The subfont's Private dict is currentdict; the CIDFont itself is the
  95. % next dictionary on the stack.
  96. /.readsubrs {        % <Subrs> <start> .readsubrs <Subrs>
  97.   1 SubrCount 1 sub {
  98.     dup SDBytes mul SubrMapOffset add
  99.     dup SDBytes .readint exch SDBytes add SDBytes .readint
  100.     1 index sub string ReadString 2 index 3 1 roll put
  101.   } for
  102. } bind def
  103.  
  104. % Ensure that all the Subrs for the current Type 1 subfont are loaded.
  105. % The subfont's Private dict is currentdict; the CIDFont itself is the
  106. % next dictionary on the stack.
  107. /.loadsubrs {
  108.   Subrs length 0 ne {
  109.     SubrCache SubrMapOffset .knownget {
  110.         % We've already loaded some Subrs at this offset.
  111.         % Make sure we've got as many as we need.
  112.       dup length SubrCount lt {
  113.         % We need to load more.
  114.     SubrCount array exch 1 index copy length .readsubrs
  115.     SubrCache SubrMapOffset 2 index put
  116.       } if
  117.     } {
  118.         % We haven't loaded any Subrs at this offset yet.
  119.       SubrCount array 0 .readsubrs
  120.       SubrCache SubrMapOffset 2 index put
  121.     } ifelse
  122.     Subrs copy pop
  123.   } if
  124. } bind def
  125.  
  126. % ------ CIDFontType 1 (FontType 10) ------ %
  127.  
  128. dup 1 {
  129.   10 .checkfonttype pop
  130.   1 index exch .buildfont10 exch pop
  131. } bind put
  132.  
  133. % ------ CIDFontType 2 (FontType 11) ------ %
  134.  
  135. dup 2 {
  136.   11 .checkfonttype pop
  137.   1 index exch .buildfont11 exch pop
  138. } bind put
  139.  
  140. pop        % .cidfonttypes
  141.  
  142. % ---------------- Reading CIDFontType 0 files ---------------- %
  143.  
  144. /StartData {        % <(Binary)|(Hex)> <datalength> StartData -
  145.             %   (currentdict is CID font dict)
  146.         % If we're loading a resource file and the data format is
  147.         % binary, we can just save a pointer to the data and load it
  148.         % incrementally.
  149.   mark {
  150.         % Previous versions of this code made provisions for
  151.         % reading hex-encoded data incrementally.  Since hex data
  152.         % doesn't seem to be used in practice, we no longer bother.
  153.     2 index (Binary) ne { stop } if
  154.     currentfile .currentresourcefile ne { stop } if
  155.     currentfile fileposition
  156.   } .internalstopped {
  157.         % File is not positionable, or uses hex data.
  158.         % Load the data now.
  159.     cleartomark exch (Hex) eq
  160.       { { currentfile exch readhexstring pop } }
  161.       { { currentfile exch readstring pop } }
  162.     ifelse exch
  163.         % Stack: readproc length
  164.     dup 65400 le {
  165.         % readstring with a 0-length string causes a rangecheck,
  166.         % but a data length of 0 is allowed.
  167.       string dup () ne { 1 index exec } if
  168.     } {
  169.       mark 3 1 roll {
  170.         % Stack: mark str ... readproc length
  171.     dup 0 eq { pop exit } if
  172.     dup 65400 min dup string 3 index exec
  173.         % Stack: mark str ... readproc length newstrlen newstr
  174.     4 1 roll sub
  175.       } loop
  176.       counttomark 1 add 1 roll ]
  177.     } ifelse
  178.     /GlyphData exch def
  179.         % If we were reading hex data, skip past the >.
  180.     2 get { readhexstring } 0 get eq {
  181.       currentfile 0 (>) .subfiledecode dup flushfile closefile
  182.     } if
  183.   } {
  184.         % File is positionable and binary, just save a pointer.
  185.         % Stack: (Binary) length -mark- pos
  186.     /GlyphData 0 def
  187.     exch pop 3 -1 roll pop exch
  188.         % Stack: pos length
  189.     /DataSource currentfile 2 index () .subfiledecode true .reusablestream def
  190.     currentfile 3 1 roll add setfileposition
  191.   } ifelse
  192.   /SubrCache 10 dict def
  193.   CIDFontName currentdict /CIDFont defineresource pop
  194.   end            % CID font dict
  195.   end            % resource category dict
  196. } bind def
  197.  
  198. % Some Adobe fonts include the line
  199. %   /Setup /cid_Setup load def
  200. % This is apparently included only to prevent proper, conforming PostScript
  201. % interpreters (as opposed to ATM or a special Adobe font loader) from
  202. % loading the font, since Setup is not referenced anywhere else in the file.
  203. /cid_Setup { } def
  204.  
  205. currentdict end
  206.  
  207. % ---------------- Rendering ---------------- %
  208.  
  209. % ------ Generic ------ %
  210.  
  211. % Read a string at a given offset in a "file" (binary file or
  212. % GlyphData in RAM).
  213. /ReadString {        % <pos> <string> ReadString <string>
  214.   GlyphData 0 eq {
  215.     % Read from the file.
  216.     DataSource 3 -1 roll setfileposition
  217.     DataSource exch readstring pop
  218.   } {
  219.     % Read from a string or an array of strings.
  220.     GlyphData .stringsreadstring
  221.   } ifelse
  222. } bind def
  223. /.stringsreadstring    % <pos> <string> <strings> .stringsreadstring
  224.             %   <vmstring>
  225. { dup type /stringtype eq
  226.    { 3 1 roll length getinterval
  227.    }
  228.    {  {        % Stack: pos string glyphdata
  229.     dup 0 get length dup 4 index gt { exit } if
  230.     4 -1 roll exch sub 3 1 roll
  231.     dup length 1 sub 1 exch getinterval
  232.       }
  233.      loop
  234.         % Stack: pos string glyphdata glyphdata[0]length
  235.         % We know no request can span more than 2 strings.
  236.      3 index 3 index length add 1 index le
  237.       {        % Request fits in a single string: just return a substring.
  238.     pop 0 get 3 1 roll length getinterval
  239.       }
  240.       {        % Request spans 2 strings.  Copy the first part.
  241.     1 index 0 get 4 index 3 -1 roll 1 index sub getinterval
  242.     2 index copy
  243.         % Copy the second part.
  244.         % Stack: pos str glyphdata str1
  245.     length exch 1 get 0 3 index length
  246.     3 index sub getinterval 2 index 3 1 roll putinterval
  247.     exch pop
  248.       }
  249.      ifelse
  250.    }
  251.   ifelse
  252. } bind def
  253.  
  254. % Interpret a byte string as a (big-endian) integer.
  255. /.cvbsi            % <bytes> .cvbsi <int>
  256. { 0 exch { exch 8 bitshift add } forall
  257. } bind def
  258.  
  259. % Read an integer from binary data.
  260. /.readint        % <pos> <nbytes> .readint <int>
  261. { string ReadString .cvbsi
  262. } bind def
  263.  
  264. % ------ CIDFontType 0 ------ %
  265.  
  266. /.readglyphdata {
  267.   currentfont exch .type9mapcid
  268.   FDArray exch get exch
  269. } bind def
  270.  
  271. % BuildGlyph procedure for CIDFontType 0.
  272. % The name %Type9BuildGlyph is known to the interpreter.
  273. /.cid0buildstring 10 string def
  274. (%Type9BuildGlyph) cvn {    % <cidfont> <cid> %Type9BuildGlyph -
  275.   .currentglobal 3 1 roll 1 index gcheck .setglobal
  276.   1 index begin
  277.   dup .readglyphdata dup null eq {
  278.         % Substitute CID 0. **** WRONG ****
  279.     pop pop 0 .readglyphdata
  280.   } if
  281.         % Stack: cidfont cid subfont charstring
  282.   dup null eq { pop pop pop pop } {    %**** WRONG ****
  283.     4 -1 roll pop
  284.     3 1 roll exch dup 4 -1 roll 0 0 moveto
  285.     3 index /FontType get 2 eq { .type2execchar } { .type1execchar } ifelse
  286.   } ifelse    %**** WRONG ****
  287.   end
  288.   .setglobal
  289. } bind def
  290.  
  291. % ------ CIDFontType 2 ------ %
  292.  
  293. % BuildGlyph procedure for CIDFontType 2.
  294. % The name %Type11BuildGlyph is known to the interpreter.
  295. (%Type11BuildGlyph) cvn {    % <cidfont> <cid> %Type11BuildGlyph -
  296.         % We must be prepared for out-of-range CIDs.
  297.   2 copy { .type11mapcid } .internalstopped {
  298.     pop /CharStrings get /.notdef get
  299.   } if
  300.             % Stack: cidfont cid glyphindex
  301.   1 index exch .type42execchar
  302. } bind def
  303.  
  304. % ---------------- Define resources ---------------- %
  305.  
  306. languagelevel exch 2 .setlanguagelevel
  307.  
  308. % Define the CIDInit ProcSet resource.
  309. % The ProcSet dictionary is still on the stack.
  310.  
  311. % We might have loaded CMap support already.  However, Adobe's
  312. % protected font downloader defines a CIDInit ProcSet that will be
  313. % loaded from the filesystem later, so we must check specifically
  314. % for the ProcSet being defined in VM.
  315. /CIDInit /ProcSet 2 copy resourcestatus { pop 0 eq } { false } ifelse {
  316.   pop pop findresource dup length 4 index length add dict .copydict
  317.   4 -1 roll exch .copydict
  318. } {
  319.   3 -1 roll
  320. } ifelse exch defineresource pop
  321.  
  322. % Define the CIDFont resource category.
  323. % We break out .buildcidfont because it appears that at least for
  324. % Type 32 (CIDFontType 4) fonts, the font can be registered in the Font
  325. % category with only a CIDFontType and no FontType.
  326. /.buildcidfont {        % <name> <fontdict> .buildcidfont
  327.                 %   <name> <cidfont>
  328.   dup /CIDFontType get //.cidfonttypes exch get exec
  329. } odef
  330.  
  331. /CIDFont /Generic /Category findresource dup length dict .copydict
  332. dup /InstanceType /dicttype put
  333. dup /DefineResource {
  334.   .buildcidfont
  335.   /Generic /Category findresource /DefineResource get exec
  336. } put
  337. % CIDFonts may be defined in CFF OpenType files.
  338. % Check for this here.
  339. /.loadcidfontresource {
  340.   dup .ResourceFile {
  341.     {.loadfont} .execasresource
  342.   } {
  343.     dup /undefinedresource signalerror
  344.   } ifelse
  345. } bind def
  346. dup /.LoadResource {
  347.   currentglobal {
  348.     .loadcidfontresource
  349.   } {
  350.     true setglobal {.loadcidfontresource} stopped false setglobal {stop} if
  351.   } ifelse
  352. } bind put
  353.  
  354. /Category defineresource pop
  355.  
  356. % Add the new FontType resources.
  357.  
  358. 9 1 11 { dup /FontType defineresource pop } for
  359.  
  360. % Add the new FMapType resource.
  361.  
  362. 9 dup /FMapType defineresource pop
  363.  
  364. % Define the CIDMap resource category.
  365. % These aren't documented, but it's clear what they are for:
  366. % to give names to CIDMaps for CIDFontType 2 fonts.
  367.  
  368. /CIDMap /Generic /Category findresource dup length dict .copydict
  369. dup /.CheckResource {
  370.     % Allow a string, an array of strings, or (as of Adobe release 3011)
  371.     % a dictionary.
  372.   dup type dup dup /stringtype eq exch /dicttype eq or {
  373.     pop true
  374.   } {
  375.     dup /arraytype eq exch /packedarraytype eq or {
  376.       true exch { type /stringtype eq and } forall
  377.     } {
  378.       false
  379.     } ifelse
  380.   } ifelse
  381. } bind put
  382. /Category defineresource pop
  383.  
  384. .setlanguagelevel
  385.