home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 517a.lha / FontManipulatorForDtp_v2 / doc / mkatc.doc next >
Text File  |  1991-06-09  |  2KB  |  80 lines

  1. CGFont .atc file builder for PPage etc.
  2. =======================================
  3.  
  4. MkAtc V1.0 Copyright Adrian Aylward 1991
  5.  
  6. You may freely copy, use, and modify this program.  The source is included
  7. in the distribution.
  8.  
  9. This program builds a character encoding table file (.atc) in the format
  10. used by Professional Page for its CG fonts.  It uses the PostScript style
  11. encoding file.  You can use it to change the character set used by PPage,
  12. to access special characters and typographic symbols.
  13.  
  14. Command line interface
  15. ======================
  16.  
  17. usage:
  18.  
  19.     mkatc -options atcfile
  20.  
  21. options:
  22.  
  23.         -e encodingfile
  24.                 The character set encoding file.  Default
  25.                 "PSFonts:encoding.ps".
  26.  
  27.         -c charcodesfile
  28.                 The file listing the available CG font character codes.
  29.                 Default "CGFonts:cgcharset".
  30.  
  31.         -lnnn   LoChar (default 32).  Character codes below this value
  32.                 are ignored.
  33.  
  34.         -hnnn   HiChar (default 255).  Character codes above this value
  35.                 are ignored.
  36.  
  37.         -unnn   Unique id.
  38.  
  39.         -r      Read the .atc file, only.  Do not update it.
  40.  
  41.         -v      Verify the encoding table to the standard output.
  42.  
  43.         -V      Verify encoding table, using an alternative format.
  44.  
  45. The "atcfile" argument is the name of the .atc file to be created.
  46.  
  47. When creating a new .atc file the unique id must be given as an option.  (Its
  48. value can be determined by looking in the corresponding .dat file, or by
  49. referring to an old version.  When updating an old file the old value will
  50. be used by default.
  51.  
  52. for example:
  53.  
  54.     mkatc cgfonts:Times.atc
  55.  
  56.     mkatc -e psfonts:ppage_encoding.ps cgfonts:Times.atc
  57.  
  58.     mkatc -rv cgfonts:Times.atc
  59.  
  60. After changing the .atc file you should purge any entries refering to it
  61. from the font cache, to ensurethat you get the new characters next time
  62. you run PPage.  The easy way to do this is to type:
  63.  
  64.     rm cgcache:Times*
  65.  
  66. Caveat
  67. ======
  68.  
  69. The .atc file format and the character codes were determined by reverse
  70. engineering.  So I can't guarantee their accurary.  However they appear to
  71. work OK.
  72.  
  73. Versions
  74. ========
  75.  
  76.     V1.0  04-May-91
  77.  
  78. The original.
  79.  
  80.