home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Support / gs704w32.exe / gs7.04 / lib / pfbtopfa.ps < prev    next >
Text File  |  2002-01-31  |  1KB  |  37 lines

  1. %    Copyright (C) 1999 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: pfbtopfa.ps,v 1.2 2000/09/19 18:29:11 lpd Exp $
  16. % pfbtopfa.ps
  17. % Convert a .pfb font to .pfa format.
  18.  
  19. [ shellarguments {
  20.   counttomark 2 eq {
  21.     /pfa exch def /pfb exch def pop
  22.     /in1 pfb (r) file def
  23.     /in in1 true /PFBDecode filter def
  24.     /out pfa (w) file def
  25.     { in read not { exit } if out exch write } loop
  26.     out closefile in closefile in1 closefile
  27.     quit
  28.   } {
  29.     cleartomark (Usage: pfbtopfa input.pfb output.pfa) = flush
  30.   } ifelse
  31. } {
  32.   pop
  33. } ifelse
  34.