misc/libfreetype/docs/formats.txt
author koda
Mon, 25 Apr 2011 01:46:54 +0200
changeset 5172 88f2e05288ba
permissions -rw-r--r--
aaand let's add freetype as well while we are at it other smaller changes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     1
This  file  contains a  list  of various  font  formats.   It gives  the
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     2
reference document and whether it is supported in FreeType 2.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     5
  file type:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     6
    The only special  case is `MAC'; on older Mac  OS versions, a `file'
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     7
    is  stored as  a  data and  a  resource fork,  this  is, within  two
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     8
    separate data chunks.   In all other cases, the  font data is stored
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     9
    in a single file.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    10
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    11
  wrapper format:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    12
    The format used  to represent the font data.  In  the table below it
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    13
    is used only if the font format differs.  Possible values are `SFNT'
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    14
    (binary), `PS' (a text header, followed by binary or text data),
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    15
    `LZW' (compressed with either `gzip' or `compress'), and
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    16
    `BZ2' (compressed with `bzip2`).
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    17
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    18
  font format:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    19
    How the font  is to be accessed, possibly  after converting the file
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    20
    type and  wrapper format  into a generic  form.  Bitmap  formats are
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    21
    `BDF',  `PCF', and  one  form  of `WINFNT';  all  others are  vector
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    22
    formats.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    23
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    24
  font type:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    25
    Sub-formats  of the font  format.  `SBIT'  and `MACSBIT'  are bitmap
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    26
    formats, `MM' and `VAR' support optical axes.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    27
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    28
  glyph access:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    29
    If not specified, the glyph access is `standard' to the font format.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    30
    Values are  `CID' for CID-keyed  fonts, `SYNTHETIC' for  fonts which
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    31
    are modified  versions of other  fonts by means of  a transformation
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    32
    matrix, `COLLECTION' for collecting  multiple fonts (sharing most of
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    33
    the data) into a single file, and `TYPE_0' for PS fonts which are to
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    34
    be accessed in a tree-like structure.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    36
  FreeType driver:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    37
    The module in  the FreeType library which handles  the specific font
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    38
    format.   A missing entry  means that  FreeType doesn't  support the
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    39
    font format (yet).
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    40
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    41
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    42
Please  send  additions  and/or  corrections  to wl@gnu.org  or  to  the
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    43
FreeType developer's list  at freetype-devel@nongnu.org (for subscribers
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    44
only).   If you  can provide  a font  example for  a format  which isn't
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    45
supported yet please send a mail too.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    46
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    47
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    48
file wrapper font   font    glyph      FreeType reference
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    49
type format  format type    access     driver   documents
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    50
----------------------------------------------------------------------------
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    51
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    52
---  ---     BDF    ---     ---        bdf      5005.BDF_Spec.pdf, X11
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    53
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    54
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    55
---  SFNT    PS     TYPE_1  ---        type1    Type 1 GX Font Format
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    56
                                                (for the Mac) [3]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    57
MAC  SFNT    PS     TYPE_1  ---        type1    Type 1 GX Font Format
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    58
                                                (for the Mac) [3]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    59
---  SFNT    PS     TYPE_1  CID        cid      5180.sfnt.pdf (for the Mac)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    60
                                                [3]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    61
MAC  SFNT    PS     TYPE_1  CID        cid      5180.sfnt.pdf (for the Mac)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    62
                                                [3]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    63
---  SFNT    PS     CFF     ---        cff      OT spec, 5176.CFF.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    64
                                                (`OTTO' format)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    65
MAC  SFNT    PS     CFF     ---        cff      OT spec, 5176.CFF.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    66
                                                (`OTTO' format)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    67
---  SFNT    PS     CFF     CID        cff      OT spec, 5176.CFF.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    68
MAC  SFNT    PS     CFF     CID        cff      OT spec, 5176.CFF.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    69
---  SFNT    PS     CFF     SYNTHETIC  ---      OT spec, 5176.CFF.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    70
MAC  SFNT    PS     CFF     SYNTHETIC  ---      OT spec, 5176.CFF.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    71
---  SFNT    TT     SBIT    ---        sfnt     XFree86 (bitmaps only;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    72
                                                with `head' table)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    73
---  SFNT    TT     MACSBIT ---        sfnt     OT spec (for the Mac;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    74
                                                bitmaps only; `bhed' table)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    75
MAC  SFNT    TT     MACSBIT ---        sfnt     OT spec (for the Mac;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    76
                                                bitmaps only; `bhed' table)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    77
---  SFNT    TT     ---     ---        truetype OT spec (`normal' TT font)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    78
MAC  SFNT    TT     ---     ---        truetype OT spec (`normal' TT font)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    79
MAC  SFNT    TT     VAR     ---        truetype GX spec (`?var' tables)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    80
---  SFNT    TT     ---     COLLECTION truetype OT spec (this can't be CFF)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    81
MAC  SFNT    TT     ---     COLLECTION truetype OT spec (this can't be CFF)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    82
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    83
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    84
---  ---     PS     TYPE_1  ---        type1    T1_SPEC.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    85
                                                (`normal' Type 1 font)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    86
MAC  ---     PS     TYPE_1  ---        type1    T1_SPEC.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    87
                                                (`normal' Type 1 font)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    88
---  ---     PS     TYPE_1  CID        cid      PLRM.pdf (CID Font Type 0;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    89
                                                Type 9 font)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    90
---  ---     PS     MM      ---        type1    5015.Type1_Supp.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    91
                                                (Multiple Masters)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    92
---  ---     PS     CFF     ---        cff      5176.CFF.pdf (`pure' CFF)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    93
---  ---     PS     CFF     CID        cff      5176.CFF.pdf (`pure' CFF)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    94
---  ---     PS     CFF     SYNTHETIC  ---      5176.CFF.pdf (`pure' CFF)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    95
---  PS      PS     CFF     ---        ---      PLRM.pdf (Type 2) [1]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    96
---  PS      PS     CFF     CID        ---      PLRM.pdf (Type 2) [1]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    97
---  PS      PS     CFF     SYNTHETIC  ---      PLRM.pdf (Type 2) [1]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    98
---  ---     PS     ---     TYPE_0     ---      PLRM.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    99
---  ---     PS     TYPE_3  ---        ---      PLRM.pdf (never supported)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   100
---  ---     PS     TYPE_3  CID        ---      PLRM.pdf (CID Font Type 1;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   101
                                                Type 10 font; never supported)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   102
---  PS      PS     TYPE_14 ---        ---      PLRM.pdf (Chameleon font;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   103
                                                Type 14 font; never supported?)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   104
---  ---     PS     TYPE_32 CID        ---      PLRM.pdf (CID Font Type 4;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   105
                                                Type 32 font; never supported?)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   106
---  PS      TT     ---     ---        type42   5012.Type42_Spec.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   107
                                                (Type 42 font)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   108
---  PS      TT     ---     CID        ---      PLRM.pdf (CID Font Type 2;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   109
                                                Type 11 font)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   110
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   111
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   112
---  ?       ?      CEF     ?          cff      ?
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   113
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   114
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   115
---  ---     PCF    ---     ---        pcf      X11 [4]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   116
---  LZW     PCF    ---     ---        pcf      X11 [4]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   117
---  BZ2     PCF    ---     ---        pcf      X11 [4]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   118
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   119
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   120
---  ---     PFR    PFR0    ---        pfr      [2]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   121
---  ---     PFR    PFR1    ---        ---      (undocumented, proprietary;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   122
                                                probably never supported)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   123
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   124
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   125
---  ---     WINFNT ---     ---        winfonts MS Windows 3 Developer's Notes
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   126
---  ---     WINFNT VECTOR  ---        ---      MS Windows 3 Developer's Notes
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   127
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   128
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   129
[1] Support should be rather simple since this is identical to `CFF' but
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   130
    in a PS wrapper.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   131
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   132
[2] Official PFR specification:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   133
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   134
      http://www.bitstream.com/categories/developer/truedoc/pfrspec.html
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   135
      http://www.bitstream.com/categories/developer/truedoc/pfrspec1.2.pdf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   136
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   137
    The  syntax of  the  auxiliary data  is  not defined  there, but  is
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   138
    partially defined in  MHP 1.0.3 (also called ETSI  TS 101812 V1.3.1)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   139
    section 7.4.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   140
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   141
      http://www.etsi.org/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   142
      http://webapp.etsi.org/workprogram/Report_WorkItem.asp?WKI_ID=18799
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   143
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   144
    (free registration required).
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   145
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   146
[3] Support is rudimentary currently; some tables are not loaded yet.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   147
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   148
[4] See
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   149
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   150
      THE X WINDOW SYSTEM SERVER: X VERSION 11, RELEASE 5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   151
      Elias Israel, Erik Fortune, Digital Press, 1992
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   152
      ISBN 1-55558-096-3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   153
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   154
    for a specification  given in Appendix D on pgs. 436-450.   However,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   155
    this information  might be out of  date; unfortunately,  there is no
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   156
    PCF  specification available  online, and this book is out of print. 
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   157
    George  Williams deduced  the font  format from the X11  sources and
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   158
    documented it for his FontForge font editor:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   159
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   160
      http://fontforge.sourceforge.net/pcf-format.html
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   161
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   162
------------------------------------------------------------------------
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   163
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   164
Copyright 2004, 2005, 2008, 2009, 2010 by
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   165
David Turner, Robert Wilhelm, and Werner Lemberg.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   166
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   167
This  file is  part  of the  FreeType  project, and  may  only be  used,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   168
modified,  and  distributed under  the  terms  of  the FreeType  project
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   169
license, LICENSE.TXT.  By continuing  to use, modify, or distribute this
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   170
file  you indicate that  you have  read the  license and  understand and
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   171
accept it fully.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   173
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   174
--- end of formats.txt ---