1 /***************************************************************************/
5 /* High-level `autohint' module-specific interface (specification). */
7 /* Copyright 1996-2000 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */
16 /***************************************************************************/
19 /*************************************************************************/
21 /* The auto-hinter is used to load and automatically hint glyphs if a */
22 /* format-specific hinter isn't available. */
24 /*************************************************************************/
31 /*************************************************************************/
33 /* A small technical note regarding automatic hinting in order to */
34 /* clarify this module interface. */
36 /* An automatic hinter might compute two kinds of data for a given face: */
38 /* - global hints: Usually some metrics that describe global properties */
39 /* of the face. It is computed by scanning more or less */
40 /* agressively the glyphs in the face, and thus can be */
41 /* very slow to compute (even if the size of global */
42 /* hints is really small). */
44 /* - glyph hints: These describe some important features of the glyph */
45 /* outline, as well as how to align them. They are */
46 /* generally much faster to compute than global hints. */
48 /* The current FreeType auto-hinter does a pretty good job while */
49 /* performing fast computations for both global and glyph hints. */
50 /* However, we might be interested in introducing more complex and */
51 /* powerful algorithms in the future, like the one described in the John */
52 /* D. Hobby paper, which unfortunately requires a lot more horsepower. */
54 /* Because a sufficiently sophisticated font management system would */
55 /* typically implement an LRU cache of opened face objects to reduce */
56 /* memory usage, it is a good idea to be able to avoid recomputing */
57 /* global hints every time the same face is re-opened. */
59 /* We thus provide the ability to cache global hints outside of the face */
60 /* object, in order to speed up font re-opening time. Of course, this */
61 /* feature is purely optional, so most client programs won't even notice */
64 /* I initially thought that it would be a good idea to cache the glyph */
65 /* hints too. However, my general idea now is that if you really need */
66 /* to cache these too, you are simply in need of a new font format, */
67 /* where all this information could be stored within the font file and */
68 /* decoded on the fly. */
70 /*************************************************************************/
73 #include <freetype/freetype.h>
76 typedef struct FT_AutoHinterRec_
*FT_AutoHinter
;
79 /*************************************************************************/
82 /* FT_AutoHinter_Get_Global_Func */
85 /* Retrieves the global hints computed for a given face object the */
86 /* resulting data is dissociated from the face and will survive a */
87 /* call to FT_Done_Face(). It must be discarded through the API */
88 /* FT_AutoHinter_Done_Global_Func(). */
91 /* hinter :: A handle to the source auto-hinter. */
93 /* face :: A handle to the source face object. */
96 /* global_hints :: A typeless pointer to the global hints. */
98 /* global_len :: The size in bytes of the global hints. */
100 typedef void (*FT_AutoHinter_Get_Global_Func
)(
101 FT_AutoHinter hinter
,
107 /*************************************************************************/
110 /* FT_AutoHinter_Done_Global_Func */
113 /* Discards the global hints retrieved through */
114 /* FT_AutoHinter_Get_Global_Func(). This is the only way these hints */
115 /* are freed from memory. */
118 /* hinter :: A handle to the auto-hinter module. */
120 /* global :: A pointer to retrieved global hints to discard. */
122 typedef void (*FT_AutoHinter_Done_Global_Func
)( FT_AutoHinter hinter
,
126 /*************************************************************************/
129 /* FT_AutoHinter_Reset_Func */
132 /* This function is used to recompute the global metrics in a given */
133 /* font. This is useful when global font data changes (e.g. Multiple */
134 /* Masters fonts where blend coordinates change). */
137 /* hinter :: A handle to the source auto-hinter. */
139 /* face :: A handle to the face. */
141 typedef void (*FT_AutoHinter_Reset_Func
)( FT_AutoHinter hinter
,
145 /*************************************************************************/
148 /* FT_AutoHinter_Load_Func */
151 /* This function is used to load, scale, and automatically hint a */
152 /* glyph from a given face. */
155 /* face :: A handle to the face. */
156 /* glyph_index :: The glyph index. */
157 /* load_flags :: The load flags. */
160 /* This function is capable of loading composite glyphs by hinting */
161 /* each sub-glyph independently (which improves quality). */
163 /* It will call the font driver with FT_Load_Glyph(), with */
164 /* FT_LOAD_NO_SCALE set. */
166 typedef FT_Error (*FT_AutoHinter_Load_Func
)( FT_AutoHinter hinter
,
170 FT_ULong load_flags
);
173 /*************************************************************************/
176 /* FT_AutoHinter_Interface */
179 /* The auto-hinter module's interface. */
181 typedef struct FT_AutoHinter_Interface
183 FT_AutoHinter_Reset_Func reset_face
;
184 FT_AutoHinter_Load_Func load_glyph
;
186 FT_AutoHinter_Get_Global_Func get_global_hints
;
187 FT_AutoHinter_Done_Global_Func done_global_hints
;
189 } FT_AutoHinter_Interface
;
192 #endif /* AUTOHINT_H */