*** empty log message ***
[m17n/libotf.git] / README
1 This directory tree holds version 0.9.10 of the otf library.    -*- text -*-
2
3 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009
4   National Institute of Advanced Industrial Science and Technology (AIST)
5   Registration Number H15PRO167
6 See the end for copying conditions.
7
8
9 #####################################################################
10 #       libotf -- A Library for handling OpenType Font (OTF)        #
11 #                                                                   #
12 #                       Ver.0.9.10 (2009.8.13)                      #
13 #####################################################################
14
15 (1) What is libotf?
16
17 The library "libotf" provides the following facilites.
18
19     o Read Open Type Layout Tables from OTF file.  Currently these
20       tables are supported; head, name, cmap, GDEF, GSUB, and GPOS.
21
22     o Convert a Unicode character sequence to a glyph code sequence by
23       using the above tables.
24
25 The combination of libotf and the FreeType library (Ver.2) realizes
26 CTL (complex text layout) by OpenType fonts.
27
28 It seems that the probject Free Type Layout provides the similar (or
29 better) facility as this library, but currently they have not yet
30 released their library.  So, we have developped this one.
31
32 (2) Installation
33
34 (2-1) Installation from libotf-X.Y.tar.gz.
35
36 % tar xfz libotf-X.Y.tar.gz
37 % cd libotf-X.Y
38 % ./configure
39 % make
40 % make install
41
42 (2-2) Installation from CVS repository.
43
44 % cvs -d :pserver:anonymous@cvs.m17n.org:/cvs/root login
45 CVS Password:  <- type Enter (or RET)
46 % cvs -d :pserver:anonymous@cvs.m17n.org:/cvs/root co libotf
47 % cd libotf
48 % ./autogen.sh
49 % ./configure
50 % make
51 % make install
52
53 (3) Documents
54
55 o REAMDE -- this file
56 o COPYING -- LGPL document
57 o INSTALL -- the generic installation instructions
58 o NEWS -- the recent changes to libotf
59
60 See the header file otf.h for the API provided by this library.
61
62 (4) Bug report
63
64 Please send bug reports to bugs <handa@m17n.org>.
65
66
67 -----
68
69 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009
70   National Institute of Advanced Industrial Science and Technology (AIST)
71   Registration Number H15PRO167
72
73 This file is part of libotf.
74
75 Libotf is free software; you can redistribute it and/or modify it
76 under the terms of the GNU Lesser General Public License as published
77 by the Free Software Foundation; either version 2.1 of the License, or
78 (at your option) any later version.
79
80 Libotf is distributed in the hope that it will be useful, but WITHOUT
81 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
82 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
83 License for more details.
84
85 You should have received a copy of the GNU Lesser General Public
86 License along with this library, in a file named COPYING; if not,
87 write to the Free Software Foundation, Inc., 59 Temple Place, Suite
88 330, Boston, MA 02111-1307, USA.