home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d138 / macfont.lha / MacFont / README < prev    next >
Text File  |  1988-03-20  |  3KB  |  68 lines

  1.             Macintosh font conversion package
  2.             ---------------------------------
  3.  
  4. First off, I'd like to thank John O'Neill for writing the Mac suitcase
  5. unpacker and for generally letting me in on what's going on with Mac
  6. fonts.   Thanks John!
  7.  
  8. Conversion of fonts is a 3 step process:
  9.  
  10.  
  11. 1) Transfer a Mac font suitcase file to the Amiga using the method of 
  12.    your choice.  The closer you can get to sending the exact unmodified
  13.    binary the happier you'll be.  The fonts that I've converted (yes
  14.    I have test this beast :-) ) we're shipped from the Mac to our
  15.    VAX 750 using FreeTerm and then from the VAX to the Amiga using
  16.    the kermit binary transfer facility in vt100 v2.6.  This works for me.
  17.  
  18. 2) Unpack the suitcase you have just downloaded to the Amiga using the
  19.    'unpack' program.  The -x option forces the program to ignore the
  20.    first 128 bytes, this option is included because the transfer method
  21.    described above caused a 128 byte .info header to be prepended to the
  22.    suitcase data.  This was originally always done as part of the unpacking
  23.    but I turned it into an option just in case...  The output of unpack
  24.    is a zillion files, one for each font at each size in the suitcase.  
  25.    The files are all of the form  Font_Name.pointsize.
  26.  
  27. 3) Convert the raw Mac font resources into Amiga fonts using the 'convert'
  28.    program.  Convert only converts one font at a time... so in practices
  29.    you use you're favourite shell and something like a 
  30.  
  31.        foreach i ( *.* ) "convert $i"
  32.  
  33.    loop.  Convert creates the required .font files, makes the directorys
  34.    required and creates the font executable (did you know that Amiga
  35.    fonts are executable?).  Note:  Mac fonts are named by their point
  36.    size, e.g.  Chicago 12 is a 12 point font.  Amiga fonts are named
  37.    by their pixel height, e.g. Topaz 11 is 11 pixels high.  This means
  38.    that the font will convert into a different size number, e.g.
  39.    Beverly Hills 72 becomes Beverly Hills 84.  Further sometimes there
  40.    are serveral point sizes that end up being the same number of pixels
  41.    high (due to positition of the baseline, leading, etc.) this means
  42.    that two Mac fonts might map onto the same Amiga font size.  Currently
  43.    the convert program just overwrites the old font in that case.
  44.  
  45.    I recommend you reassign fonts: to somewhere convenient before
  46.    performing the conversion as there will likely be many new fonts
  47.    added to the system and there are only a few Amiga programs that deal
  48.    with many fonts gracefully.  (This is only a problem when running
  49.    software that tries to let you choose your font from a menu or
  50.    a requestor, it isn't a problem with the way the OS deal with fonts).
  51.  
  52.  
  53. Permission is granted to freely redistribute any or all of the font
  54. conversion package sources, documents & executeable provided that there is
  55. no charge for such redistribution above a normal disk copying fee or
  56. download/connect time charge.  e.g. it's OK to put these on any BBS,
  57. online service, or disk library; it's not OK to market them for profit.
  58. Any use other than indicated above requires written permission from
  59. both authors.
  60.  
  61. Please be aware when doing font conversions that many Mac fonts are
  62. copyrighted by various individuals/companies and that doing a conversion
  63. of such a font may be in violation of the laws of your country.  There
  64. are many nice public domain Mac fonts and it will please me no end if
  65. the use of this program is completely limited to those fonts.
  66.  
  67.     -Rico
  68.