File: README

package info (click to toggle)
gltt 1.7-3
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 548 kB
  • ctags: 482
  • sloc: cpp: 4,537; sh: 1,733; makefile: 140
file content (156 lines) | stat: -rw-r--r-- 5,434 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156

                                  gltt 1.7

                      Copyright (C) 1998 Stephane Rehel

Last modified: March 2 1998

----------------------------------------------------------------------------
Official Site
----------------------------------------------------------------------------

  http://home.worldnet.fr/~rehel/gltt/gltt.html

----------------------------------------------------------------------------
Author
----------------------------------------------------------------------------

  Stephane Rehel, rehel@worldnet.fr

----------------------------------------------------------------------------
What it does
----------------------------------------------------------------------------

  gltt is a library that allows you to read and draw TrueType fonts in
  any OpenGL application.
  It supports bitmapped and anti-aliased font drawing as well as
  vectorized and polygonized drawing.

----------------------------------------------------------------------------
What you need
----------------------------------------------------------------------------

  You need the OpenGL library.
  For more information about OpenGL, check out http://www.opengl.org
  This library has been developed under Linux with Mesa.
    (Mesa site: http://www.ssec.wisc.edu/~brianp/Mesa.html)

  You also need the FreeType library. The official site of FreeType
  is: http://www.physiol.med.tu-muenchen.de/~robert/freetype.html

----------------------------------------------------------------------------
How to install it
----------------------------------------------------------------------------

  Untar the distribution file:

    tar xfvz gltt-1.1.tar.gz

  This will create the gltt-1.1/ directory.

  Untar the freetype distribution, compile and install it.

  Edit the FREETYPE variable in gltt-1.1/Makefile for specifying
  the FreeType installation prefix. (default is /usr/local)

  Run make:

    make

  This will build libgltt.a and the demos applications.
  The demos applications need glut-3.6 and one TrueType sample font.

----------------------------------------------------------------------------
How to use it
----------------------------------------------------------------------------

  To create a bitmapped font:

       FTFace face;
       if( ! face.open("arial.ttf") )
         fatal("unable to open ttf file");
       GLTTBitmapFont font(&face);
       int point_size= 20;
       if( ! font.create(point_size) )
         fatal("unable to create bitmapped font");
       // ... OpenGL initialization commands...
       glColor3f(1,1,1);
       font.print( x, y, "hello bitmaped world" );

  To create an anti-aliased pixmapped font:

       FTFace face;
       if( ! face.open("arial.ttf") )
         fatal("unable to open ttf file");
       GLTTPixmapFont font(&face);
       int point_size= 20;
       if( ! font.create(point_size) )
         fatal("unable to create pixmapped font");
       // ... OpenGL initialization commands...
       glColor3f(1,1,1);
       font.output( x, y, "hello anti-aliased world" );

  To create an outline font (vectorized contours only):

       FTFace face;
       if( ! face.open("arial.ttf") )
         fatal("unable to open ttf file");
       GLTTOutlineFont font(&face);
       int point_size= 20;
       if( ! font.create(point_size) )
         fatal("unable to create outline font");
       // ... OpenGL initialization commands...
       glColor3f(1,1,1);
       font.print( x, y, "hello outlined world" );

  To create an plain font (plain polygonized font):

       FTFace face;
       if( ! face.open("arial.ttf") )
         fatal("unable to open ttf file");
       GLTTFont font(&face);
       int point_size= 20;
       if( ! font.create(point_size) )
         fatal("unable to create outline font");
       // ... OpenGL initialization commands...
       glColor3f(1,1,1);
       font.print( x, y, "hello plain world" );

----------------------------------------------------------------------------
How it works
----------------------------------------------------------------------------

  Read the FreeType documentation files for more information about
  the vocabulary used. (as glyph, contours, etc.)

  gltt is written in C++.
  The FT* classes don't depend on OpenGL but simply on FreeType.
  The GLTT* classes do depend on OpenGL.

  The GLTTBitmapFont, GLTTOutlineFont and GLTTFont classes act as
  font servers: they internally render only requested glyphs and
  cache them.
  BTW, the requested glyphs are put into a GL display list by
  GLTTOutlineFont and GLTTFont classes.

  You have access to the outline contour vectorization, as well as
  its tesselation. You have access to the trangles set generated
  by the glyph tesselation. (see the source code and the demo)

  No extrusion ability is provided since this feature could be
  restrictive: it is not the goal of this library. The author lets
  the user have imagination for nice extrusions!

----------------------------------------------------------------------------
Bugs.
----------------------------------------------------------------------------

  This piece of code has been written in less than one week. Only tested
  under Linux/Mesa!
  This library is distributed under the terms of the GNU Library
  General Public License, see the LICENSE file for details.

  Enjoy!
  /kepler

----------------------------------------------------------------------------