home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 12 Font / 12-Font.zip / FONTUTIL.ZIP / t1asm.man < prev    next >
Text File  |  1992-06-12  |  2KB  |  66 lines

  1. T1ASM (1)                                               T1ASM (1)
  2.  
  3.  
  4. NAME
  5.      t1asm - assemble type-1 font
  6.  
  7. SYNOPSIS
  8.      t1asm [-b][-l length][input[output]]
  9.  
  10. DESCRIPTION
  11.      t1asm assembles Adobe type-1 font programs into either PFA
  12.      (hexadecimal) or PFB (binary) formats from a human-readable
  13.      form.  If the file output is not specified output goes to
  14.      the standard output.  If the file input is not specified
  15.      input comes from the standard input.  In this way t1asm can
  16.      be used as a filter.
  17.  
  18.      t1asm tokenizes the charstring data and performs eexec and
  19.      charstring encryption as specified in the Adobe Type 1 Font
  20.      Format, the Adobe black book.
  21.  
  22.      The input is required to have a line of the form
  23.  
  24.      /-|{string currentfile exch readstring pop}executeonly def
  25.  
  26.      which defines the command, in this case `-|', that is to
  27.      start charstring data.  It is an error not to define such a
  28.      command.  Another common name for this command is `RD'.
  29.  
  30.      After the start of the Subrs array in the input, all open
  31.      braces `{' not in a comment begin a charstring.  Such a
  32.      charstring is terminated by the next non-comment close brace
  33.      `}'.  Within such a charstring, only comments, integers, and
  34.      valid charstring commands are allowed.  The format within a
  35.      charstring is unimportant as long as integers and commands
  36.      are separated by at least a one whitespace (space, tab, new-
  37.      line) character.  Note that within charstrings, comments are
  38.      discarded because they cannot be encoded.
  39.  
  40. OPTIONS
  41.      -b
  42.         Output in PFB (binary) format.
  43.      -l length
  44.         Set the maximum length of sections in PFB output to
  45.         length.  Default value is 32 KB.  This option has no
  46.         effect on PFA output.
  47.  
  48. EXAMPLES
  49.      t1asm Utopia-Regular.raw Utopia-Regular.pfa
  50.      t1asm -b Utopia-Regular.raw Utopia-Regular.pfb
  51.  
  52. SEE ALSO
  53.      t1disasm (1), t1ascii (1), t1binary(1),
  54.      Adobe Type 1 Font Format
  55.  
  56. BUGS
  57.      None known.
  58.  
  59. AUTHOR
  60.      Lee Hetherington (ilh@lcs.mit.edu)
  61.  
  62.      Ported to Microsoft C/C++ Compiler and MS-DOS operating
  63.      system by Kai-Uwe Herbing (herbing@netmbx.netmbx.de)
  64.  
  65.                           June 12, 1992
  66.