1 /***************************************************************************/
2 /*                                                                         */
3 /*  freetype.h                                                             */
4 /*                                                                         */
5 /*    FreeType high-level API and common types (specification only).       */
6 /*                                                                         */
7 /*  Copyright 1996-2011 by                                                 */
8 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
9 /*                                                                         */
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.                                        */
15 /*                                                                         */
16 /***************************************************************************/
17 
18 
19 #ifndef FT_FREETYPE_H
20 #error "`ft2build.h' hasn't been included yet!"
21 #error "Please always use macros to include FreeType header files."
22 #error "Example:"
23 #error "  #include <ft2build.h>"
24 #error "  #include FT_FREETYPE_H"
25 #endif
26 
27 
28 #ifndef __FREETYPE_H__
29 #define __FREETYPE_H__
30 
31 
32 #include <ft2build.h>
33 #include FT_CONFIG_CONFIG_H
34 #include FT_ERRORS_H
35 #include FT_TYPES_H
36 
37 
38 FT_BEGIN_HEADER
39 
40 
41 
42   /*************************************************************************/
43   /*                                                                       */
44   /* <Section>                                                             */
45   /*    user_allocation                                                    */
46   /*                                                                       */
47   /* <Title>                                                               */
48   /*    User allocation                                                    */
49   /*                                                                       */
50   /* <Abstract>                                                            */
51   /*    How client applications should allocate FreeType data structures.  */
52   /*                                                                       */
53   /* <Description>                                                         */
54   /*    FreeType assumes that structures allocated by the user and passed  */
55   /*    as arguments are zeroed out except for the actual data.  In other  */
56   /*    words, it is recommended to use `calloc' (or variants of it)       */
57   /*    instead of `malloc' for allocation.                                */
58   /*                                                                       */
59   /*************************************************************************/
60 
61 
62 
63   /*************************************************************************/
64   /*************************************************************************/
65   /*                                                                       */
66   /*                        B A S I C   T Y P E S                          */
67   /*                                                                       */
68   /*************************************************************************/
69   /*************************************************************************/
70 
71 
72   /*************************************************************************/
73   /*                                                                       */
74   /* <Section>                                                             */
75   /*    base_interface                                                     */
76   /*                                                                       */
77   /* <Title>                                                               */
78   /*    Base Interface                                                     */
79   /*                                                                       */
80   /* <Abstract>                                                            */
81   /*    The FreeType~2 base font interface.                                */
82   /*                                                                       */
83   /* <Description>                                                         */
84   /*    This section describes the public high-level API of FreeType~2.    */
85   /*                                                                       */
86   /* <Order>                                                               */
87   /*    FT_Library                                                         */
88   /*    FT_Face                                                            */
89   /*    FT_Size                                                            */
90   /*    FT_GlyphSlot                                                       */
91   /*    FT_CharMap                                                         */
92   /*    FT_Encoding                                                        */
93   /*                                                                       */
94   /*    FT_FaceRec                                                         */
95   /*                                                                       */
96   /*    FT_FACE_FLAG_SCALABLE                                              */
97   /*    FT_FACE_FLAG_FIXED_SIZES                                           */
98   /*    FT_FACE_FLAG_FIXED_WIDTH                                           */
99   /*    FT_FACE_FLAG_HORIZONTAL                                            */
100   /*    FT_FACE_FLAG_VERTICAL                                              */
101   /*    FT_FACE_FLAG_SFNT                                                  */
102   /*    FT_FACE_FLAG_KERNING                                               */
103   /*    FT_FACE_FLAG_MULTIPLE_MASTERS                                      */
104   /*    FT_FACE_FLAG_GLYPH_NAMES                                           */
105   /*    FT_FACE_FLAG_EXTERNAL_STREAM                                       */
106   /*    FT_FACE_FLAG_FAST_GLYPHS                                           */
107   /*    FT_FACE_FLAG_HINTER                                                */
108   /*                                                                       */
109   /*    FT_STYLE_FLAG_BOLD                                                 */
110   /*    FT_STYLE_FLAG_ITALIC                                               */
111   /*                                                                       */
112   /*    FT_SizeRec                                                         */
113   /*    FT_Size_Metrics                                                    */
114   /*                                                                       */
115   /*    FT_GlyphSlotRec                                                    */
116   /*    FT_Glyph_Metrics                                                   */
117   /*    FT_SubGlyph                                                        */
118   /*                                                                       */
119   /*    FT_Bitmap_Size                                                     */
120   /*                                                                       */
121   /*    FT_Init_FreeType                                                   */
122   /*    FT_Done_FreeType                                                   */
123   /*                                                                       */
124   /*    FT_New_Face                                                        */
125   /*    FT_Done_Face                                                       */
126   /*    FT_New_Memory_Face                                                 */
127   /*    FT_Open_Face                                                       */
128   /*    FT_Open_Args                                                       */
129   /*    FT_Parameter                                                       */
130   /*    FT_Attach_File                                                     */
131   /*    FT_Attach_Stream                                                   */
132   /*                                                                       */
133   /*    FT_Set_Char_Size                                                   */
134   /*    FT_Set_Pixel_Sizes                                                 */
135   /*    FT_Request_Size                                                    */
136   /*    FT_Select_Size                                                     */
137   /*    FT_Size_Request_Type                                               */
138   /*    FT_Size_Request                                                    */
139   /*    FT_Set_Transform                                                   */
140   /*    FT_Load_Glyph                                                      */
141   /*    FT_Get_Char_Index                                                  */
142   /*    FT_Get_Name_Index                                                  */
143   /*    FT_Load_Char                                                       */
144   /*                                                                       */
145   /*    FT_OPEN_MEMORY                                                     */
146   /*    FT_OPEN_STREAM                                                     */
147   /*    FT_OPEN_PATHNAME                                                   */
148   /*    FT_OPEN_DRIVER                                                     */
149   /*    FT_OPEN_PARAMS                                                     */
150   /*                                                                       */
151   /*    FT_LOAD_DEFAULT                                                    */
152   /*    FT_LOAD_RENDER                                                     */
153   /*    FT_LOAD_MONOCHROME                                                 */
154   /*    FT_LOAD_LINEAR_DESIGN                                              */
155   /*    FT_LOAD_NO_SCALE                                                   */
156   /*    FT_LOAD_NO_HINTING                                                 */
157   /*    FT_LOAD_NO_BITMAP                                                  */
158   /*    FT_LOAD_CROP_BITMAP                                                */
159   /*                                                                       */
160   /*    FT_LOAD_VERTICAL_LAYOUT                                            */
161   /*    FT_LOAD_IGNORE_TRANSFORM                                           */
162   /*    FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH                                */
163   /*    FT_LOAD_FORCE_AUTOHINT                                             */
164   /*    FT_LOAD_NO_RECURSE                                                 */
165   /*    FT_LOAD_PEDANTIC                                                   */
166   /*                                                                       */
167   /*    FT_LOAD_TARGET_NORMAL                                              */
168   /*    FT_LOAD_TARGET_LIGHT                                               */
169   /*    FT_LOAD_TARGET_MONO                                                */
170   /*    FT_LOAD_TARGET_LCD                                                 */
171   /*    FT_LOAD_TARGET_LCD_V                                               */
172   /*                                                                       */
173   /*    FT_Render_Glyph                                                    */
174   /*    FT_Render_Mode                                                     */
175   /*    FT_Get_Kerning                                                     */
176   /*    FT_Kerning_Mode                                                    */
177   /*    FT_Get_Track_Kerning                                               */
178   /*    FT_Get_Glyph_Name                                                  */
179   /*    FT_Get_Postscript_Name                                             */
180   /*                                                                       */
181   /*    FT_CharMapRec                                                      */
182   /*    FT_Select_Charmap                                                  */
183   /*    FT_Set_Charmap                                                     */
184   /*    FT_Get_Charmap_Index                                               */
185   /*                                                                       */
186   /*    FT_FSTYPE_INSTALLABLE_EMBEDDING                                    */
187   /*    FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING                             */
188   /*    FT_FSTYPE_PREVIEW_AND_PRINT_EMBEDDING                              */
189   /*    FT_FSTYPE_EDITABLE_EMBEDDING                                       */
190   /*    FT_FSTYPE_NO_SUBSETTING                                            */
191   /*    FT_FSTYPE_BITMAP_EMBEDDING_ONLY                                    */
192   /*                                                                       */
193   /*    FT_Get_FSType_Flags                                                */
194   /*                                                                       */
195   /*************************************************************************/
196 
197 
198   /*************************************************************************/
199   /*                                                                       */
200   /* <Struct>                                                              */
201   /*    FT_Glyph_Metrics                                                   */
202   /*                                                                       */
203   /* <Description>                                                         */
204   /*    A structure used to model the metrics of a single glyph.  The      */
205   /*    values are expressed in 26.6 fractional pixel format; if the flag  */
206   /*    @FT_LOAD_NO_SCALE has been used while loading the glyph, values    */
207   /*    are expressed in font units instead.                               */
208   /*                                                                       */
209   /* <Fields>                                                              */
210   /*    width ::                                                           */
211   /*      The glyph's width.                                               */
212   /*                                                                       */
213   /*    height ::                                                          */
214   /*      The glyph's height.                                              */
215   /*                                                                       */
216   /*    horiBearingX ::                                                    */
217   /*      Left side bearing for horizontal layout.                         */
218   /*                                                                       */
219   /*    horiBearingY ::                                                    */
220   /*      Top side bearing for horizontal layout.                          */
221   /*                                                                       */
222   /*    horiAdvance ::                                                     */
223   /*      Advance width for horizontal layout.                             */
224   /*                                                                       */
225   /*    vertBearingX ::                                                    */
226   /*      Left side bearing for vertical layout.                           */
227   /*                                                                       */
228   /*    vertBearingY ::                                                    */
229   /*      Top side bearing for vertical layout.  Larger positive values    */
230   /*      mean further below the vertical glyph origin.                    */
231   /*                                                                       */
232   /*    vertAdvance ::                                                     */
233   /*      Advance height for vertical layout.  Positive values mean the    */
234   /*      glyph has a positive advance downward.                           */
235   /*                                                                       */
236   /* <Note>                                                                */
237   /*    If not disabled with @FT_LOAD_NO_HINTING, the values represent     */
238   /*    dimensions of the hinted glyph (in case hinting is applicable).    */
239   /*                                                                       */
240   typedef struct  FT_Glyph_Metrics_
241   {
242     FT_Pos  width;
243     FT_Pos  height;
244 
245     FT_Pos  horiBearingX;
246     FT_Pos  horiBearingY;
247     FT_Pos  horiAdvance;
248 
249     FT_Pos  vertBearingX;
250     FT_Pos  vertBearingY;
251     FT_Pos  vertAdvance;
252 
253   } FT_Glyph_Metrics;
254 
255 
256   /*************************************************************************/
257   /*                                                                       */
258   /* <Struct>                                                              */
259   /*    FT_Bitmap_Size                                                     */
260   /*                                                                       */
261   /* <Description>                                                         */
262   /*    This structure models the metrics of a bitmap strike (i.e., a set  */
263   /*    of glyphs for a given point size and resolution) in a bitmap font. */
264   /*    It is used for the `available_sizes' field of @FT_Face.            */
265   /*                                                                       */
266   /* <Fields>                                                              */
267   /*    height :: The vertical distance, in pixels, between two            */
268   /*              consecutive baselines.  It is always positive.           */
269   /*                                                                       */
270   /*    width  :: The average width, in pixels, of all glyphs in the       */
271   /*              strike.                                                  */
272   /*                                                                       */
273   /*    size   :: The nominal size of the strike in 26.6 fractional        */
274   /*              points.  This field is not very useful.                  */
275   /*                                                                       */
276   /*    x_ppem :: The horizontal ppem (nominal width) in 26.6 fractional   */
277   /*              pixels.                                                  */
278   /*                                                                       */
279   /*    y_ppem :: The vertical ppem (nominal height) in 26.6 fractional    */
280   /*              pixels.                                                  */
281   /*                                                                       */
282   /* <Note>                                                                */
283   /*    Windows FNT:                                                       */
284   /*      The nominal size given in a FNT font is not reliable.  Thus when */
285   /*      the driver finds it incorrect, it sets `size' to some calculated */
286   /*      values and sets `x_ppem' and `y_ppem' to the pixel width and     */
287   /*      height given in the font, respectively.                          */
288   /*                                                                       */
289   /*    TrueType embedded bitmaps:                                         */
290   /*      `size', `width', and `height' values are not contained in the    */
291   /*      bitmap strike itself.  They are computed from the global font    */
292   /*      parameters.                                                      */
293   /*                                                                       */
294   typedef struct  FT_Bitmap_Size_
295   {
296     FT_Short  height;
297     FT_Short  width;
298 
299     FT_Pos    size;
300 
301     FT_Pos    x_ppem;
302     FT_Pos    y_ppem;
303 
304   } FT_Bitmap_Size;
305 
306 
307   /*************************************************************************/
308   /*************************************************************************/
309   /*                                                                       */
310   /*                     O B J E C T   C L A S S E S                       */
311   /*                                                                       */
312   /*************************************************************************/
313   /*************************************************************************/
314 
315   /*************************************************************************/
316   /*                                                                       */
317   /* <Type>                                                                */
318   /*    FT_Library                                                         */
319   /*                                                                       */
320   /* <Description>                                                         */
321   /*    A handle to a FreeType library instance.  Each `library' is        */
322   /*    completely independent from the others; it is the `root' of a set  */
323   /*    of objects like fonts, faces, sizes, etc.                          */
324   /*                                                                       */
325   /*    It also embeds a memory manager (see @FT_Memory), as well as a     */
326   /*    scan-line converter object (see @FT_Raster).                       */
327   /*                                                                       */
328   /*    For multi-threading applications each thread should have its own   */
329   /*    FT_Library object.                                                 */
330   /*                                                                       */
331   /* <Note>                                                                */
332   /*    Library objects are normally created by @FT_Init_FreeType, and     */
333   /*    destroyed with @FT_Done_FreeType.                                  */
334   /*                                                                       */
335   typedef struct FT_LibraryRec_  *FT_Library;
336 
337 
338   /*************************************************************************/
339   /*                                                                       */
340   /* <Type>                                                                */
341   /*    FT_Module                                                          */
342   /*                                                                       */
343   /* <Description>                                                         */
344   /*    A handle to a given FreeType module object.  Each module can be a  */
345   /*    font driver, a renderer, or anything else that provides services   */
346   /*    to the formers.                                                    */
347   /*                                                                       */
348   typedef struct FT_ModuleRec_*  FT_Module;
349 
350 
351   /*************************************************************************/
352   /*                                                                       */
353   /* <Type>                                                                */
354   /*    FT_Driver                                                          */
355   /*                                                                       */
356   /* <Description>                                                         */
357   /*    A handle to a given FreeType font driver object.  Each font driver */
358   /*    is a special module capable of creating faces from font files.     */
359   /*                                                                       */
360   typedef struct FT_DriverRec_*  FT_Driver;
361 
362 
363   /*************************************************************************/
364   /*                                                                       */
365   /* <Type>                                                                */
366   /*    FT_Renderer                                                        */
367   /*                                                                       */
368   /* <Description>                                                         */
369   /*    A handle to a given FreeType renderer.  A renderer is a special    */
370   /*    module in charge of converting a glyph image to a bitmap, when     */
371   /*    necessary.  Each renderer supports a given glyph image format, and */
372   /*    one or more target surface depths.                                 */
373   /*                                                                       */
374   typedef struct FT_RendererRec_*  FT_Renderer;
375 
376 
377   /*************************************************************************/
378   /*                                                                       */
379   /* <Type>                                                                */
380   /*    FT_Face                                                            */
381   /*                                                                       */
382   /* <Description>                                                         */
383   /*    A handle to a given typographic face object.  A face object models */
384   /*    a given typeface, in a given style.                                */
385   /*                                                                       */
386   /* <Note>                                                                */
387   /*    Each face object also owns a single @FT_GlyphSlot object, as well  */
388   /*    as one or more @FT_Size objects.                                   */
389   /*                                                                       */
390   /*    Use @FT_New_Face or @FT_Open_Face to create a new face object from */
391   /*    a given filepathname or a custom input stream.                     */
392   /*                                                                       */
393   /*    Use @FT_Done_Face to destroy it (along with its slot and sizes).   */
394   /*                                                                       */
395   /* <Also>                                                                */
396   /*    See @FT_FaceRec for the publicly accessible fields of a given face */
397   /*    object.                                                            */
398   /*                                                                       */
399   typedef struct FT_FaceRec_*  FT_Face;
400 
401 
402   /*************************************************************************/
403   /*                                                                       */
404   /* <Type>                                                                */
405   /*    FT_Size                                                            */
406   /*                                                                       */
407   /* <Description>                                                         */
408   /*    A handle to an object used to model a face scaled to a given       */
409   /*    character size.                                                    */
410   /*                                                                       */
411   /* <Note>                                                                */
412   /*    Each @FT_Face has an _active_ @FT_Size object that is used by      */
413   /*    functions like @FT_Load_Glyph to determine the scaling             */
414   /*    transformation which is used to load and hint glyphs and metrics.  */
415   /*                                                                       */
416   /*    You can use @FT_Set_Char_Size, @FT_Set_Pixel_Sizes,                */
417   /*    @FT_Request_Size or even @FT_Select_Size to change the content     */
418   /*    (i.e., the scaling values) of the active @FT_Size.                 */
419   /*                                                                       */
420   /*    You can use @FT_New_Size to create additional size objects for a   */
421   /*    given @FT_Face, but they won't be used by other functions until    */
422   /*    you activate it through @FT_Activate_Size.  Only one size can be   */
423   /*    activated at any given time per face.                              */
424   /*                                                                       */
425   /* <Also>                                                                */
426   /*    See @FT_SizeRec for the publicly accessible fields of a given size */
427   /*    object.                                                            */
428   /*                                                                       */
429   typedef struct FT_SizeRec_*  FT_Size;
430 
431 
432   /*************************************************************************/
433   /*                                                                       */
434   /* <Type>                                                                */
435   /*    FT_GlyphSlot                                                       */
436   /*                                                                       */
437   /* <Description>                                                         */
438   /*    A handle to a given `glyph slot'.  A slot is a container where it  */
439   /*    is possible to load any of the glyphs contained in its parent      */
440   /*    face.                                                              */
441   /*                                                                       */
442   /*    In other words, each time you call @FT_Load_Glyph or               */
443   /*    @FT_Load_Char, the slot's content is erased by the new glyph data, */
444   /*    i.e., the glyph's metrics, its image (bitmap or outline), and      */
445   /*    other control information.                                         */
446   /*                                                                       */
447   /* <Also>                                                                */
448   /*    See @FT_GlyphSlotRec for the publicly accessible glyph fields.     */
449   /*                                                                       */
450   typedef struct FT_GlyphSlotRec_*  FT_GlyphSlot;
451 
452 
453   /*************************************************************************/
454   /*                                                                       */
455   /* <Type>                                                                */
456   /*    FT_CharMap                                                         */
457   /*                                                                       */
458   /* <Description>                                                         */
459   /*    A handle to a given character map.  A charmap is used to translate */
460   /*    character codes in a given encoding into glyph indexes for its     */
461   /*    parent's face.  Some font formats may provide several charmaps per */
462   /*    font.                                                              */
463   /*                                                                       */
464   /*    Each face object owns zero or more charmaps, but only one of them  */
465   /*    can be `active' and used by @FT_Get_Char_Index or @FT_Load_Char.   */
466   /*                                                                       */
467   /*    The list of available charmaps in a face is available through the  */
468   /*    `face->num_charmaps' and `face->charmaps' fields of @FT_FaceRec.   */
469   /*                                                                       */
470   /*    The currently active charmap is available as `face->charmap'.      */
471   /*    You should call @FT_Set_Charmap to change it.                      */
472   /*                                                                       */
473   /* <Note>                                                                */
474   /*    When a new face is created (either through @FT_New_Face or         */
475   /*    @FT_Open_Face), the library looks for a Unicode charmap within     */
476   /*    the list and automatically activates it.                           */
477   /*                                                                       */
478   /* <Also>                                                                */
479   /*    See @FT_CharMapRec for the publicly accessible fields of a given   */
480   /*    character map.                                                     */
481   /*                                                                       */
482   typedef struct FT_CharMapRec_*  FT_CharMap;
483 
484 
485   /*************************************************************************/
486   /*                                                                       */
487   /* <Macro>                                                               */
488   /*    FT_ENC_TAG                                                         */
489   /*                                                                       */
490   /* <Description>                                                         */
491   /*    This macro converts four-letter tags into an unsigned long.  It is */
492   /*    used to define `encoding' identifiers (see @FT_Encoding).          */
493   /*                                                                       */
494   /* <Note>                                                                */
495   /*    Since many 16-bit compilers don't like 32-bit enumerations, you    */
496   /*    should redefine this macro in case of problems to something like   */
497   /*    this:                                                              */
498   /*                                                                       */
499   /*    {                                                                  */
500   /*      #define FT_ENC_TAG( value, a, b, c, d )  value                   */
501   /*    }                                                                  */
502   /*                                                                       */
503   /*    to get a simple enumeration without assigning special numbers.     */
504   /*                                                                       */
505 
506 #ifndef FT_ENC_TAG
507 #define FT_ENC_TAG( value, a, b, c, d )         \
508           value = ( ( (FT_UInt32)(a) << 24 ) |  \
509                     ( (FT_UInt32)(b) << 16 ) |  \
510                     ( (FT_UInt32)(c) <<  8 ) |  \
511                       (FT_UInt32)(d)         )
512 
513 #endif /* FT_ENC_TAG */
514 
515 
516   /*************************************************************************/
517   /*                                                                       */
518   /* <Enum>                                                                */
519   /*    FT_Encoding                                                        */
520   /*                                                                       */
521   /* <Description>                                                         */
522   /*    An enumeration used to specify character sets supported by         */
523   /*    charmaps.  Used in the @FT_Select_Charmap API function.            */
524   /*                                                                       */
525   /* <Note>                                                                */
526   /*    Despite the name, this enumeration lists specific character        */
527   /*    repertories (i.e., charsets), and not text encoding methods (e.g., */
528   /*    UTF-8, UTF-16, etc.).                                              */
529   /*                                                                       */
530   /*    Other encodings might be defined in the future.                    */
531   /*                                                                       */
532   /* <Values>                                                              */
533   /*    FT_ENCODING_NONE ::                                                */
534   /*      The encoding value~0 is reserved.                                */
535   /*                                                                       */
536   /*    FT_ENCODING_UNICODE ::                                             */
537   /*      Corresponds to the Unicode character set.  This value covers     */
538   /*      all versions of the Unicode repertoire, including ASCII and      */
539   /*      Latin-1.  Most fonts include a Unicode charmap, but not all      */
540   /*      of them.                                                         */
541   /*                                                                       */
542   /*      For example, if you want to access Unicode value U+1F028 (and    */
543   /*      the font contains it), use value 0x1F028 as the input value for  */
544   /*      @FT_Get_Char_Index.                                              */
545   /*                                                                       */
546   /*    FT_ENCODING_MS_SYMBOL ::                                           */
547   /*      Corresponds to the Microsoft Symbol encoding, used to encode     */
548   /*      mathematical symbols in the 32..255 character code range.  For   */
549   /*      more information, see `http://www.ceviz.net/symbol.htm'.         */
550   /*                                                                       */
551   /*    FT_ENCODING_SJIS ::                                                */
552   /*      Corresponds to Japanese SJIS encoding.  More info at             */
553   /*      at `http://langsupport.japanreference.com/encoding.shtml'.       */
554   /*      See note on multi-byte encodings below.                          */
555   /*                                                                       */
556   /*    FT_ENCODING_GB2312 ::                                              */
557   /*      Corresponds to an encoding system for Simplified Chinese as used */
558   /*      used in mainland China.                                          */
559   /*                                                                       */
560   /*    FT_ENCODING_BIG5 ::                                                */
561   /*      Corresponds to an encoding system for Traditional Chinese as     */
562   /*      used in Taiwan and Hong Kong.                                    */
563   /*                                                                       */
564   /*    FT_ENCODING_WANSUNG ::                                             */
565   /*      Corresponds to the Korean encoding system known as Wansung.      */
566   /*      For more information see                                         */
567   /*      `http://www.microsoft.com/typography/unicode/949.txt'.           */
568   /*                                                                       */
569   /*    FT_ENCODING_JOHAB ::                                               */
570   /*      The Korean standard character set (KS~C 5601-1992), which        */
571   /*      corresponds to MS Windows code page 1361.  This character set    */
572   /*      includes all possible Hangeul character combinations.            */
573   /*                                                                       */
574   /*    FT_ENCODING_ADOBE_LATIN_1 ::                                       */
575   /*      Corresponds to a Latin-1 encoding as defined in a Type~1         */
576   /*      PostScript font.  It is limited to 256 character codes.          */
577   /*                                                                       */
578   /*    FT_ENCODING_ADOBE_STANDARD ::                                      */
579   /*      Corresponds to the Adobe Standard encoding, as found in Type~1,  */
580   /*      CFF, and OpenType/CFF fonts.  It is limited to 256 character     */
581   /*      codes.                                                           */
582   /*                                                                       */
583   /*    FT_ENCODING_ADOBE_EXPERT ::                                        */
584   /*      Corresponds to the Adobe Expert encoding, as found in Type~1,    */
585   /*      CFF, and OpenType/CFF fonts.  It is limited to 256 character     */
586   /*      codes.                                                           */
587   /*                                                                       */
588   /*    FT_ENCODING_ADOBE_CUSTOM ::                                        */
589   /*      Corresponds to a custom encoding, as found in Type~1, CFF, and   */
590   /*      OpenType/CFF fonts.  It is limited to 256 character codes.       */
591   /*                                                                       */
592   /*    FT_ENCODING_APPLE_ROMAN ::                                         */
593   /*      Corresponds to the 8-bit Apple roman encoding.  Many TrueType    */
594   /*      and OpenType fonts contain a charmap for this encoding, since    */
595   /*      older versions of Mac OS are able to use it.                     */
596   /*                                                                       */
597   /*    FT_ENCODING_OLD_LATIN_2 ::                                         */
598   /*      This value is deprecated and was never used nor reported by      */
599   /*      FreeType.  Don't use or test for it.                             */
600   /*                                                                       */
601   /*    FT_ENCODING_MS_SJIS ::                                             */
602   /*      Same as FT_ENCODING_SJIS.  Deprecated.                           */
603   /*                                                                       */
604   /*    FT_ENCODING_MS_GB2312 ::                                           */
605   /*      Same as FT_ENCODING_GB2312.  Deprecated.                         */
606   /*                                                                       */
607   /*    FT_ENCODING_MS_BIG5 ::                                             */
608   /*      Same as FT_ENCODING_BIG5.  Deprecated.                           */
609   /*                                                                       */
610   /*    FT_ENCODING_MS_WANSUNG ::                                          */
611   /*      Same as FT_ENCODING_WANSUNG.  Deprecated.                        */
612   /*                                                                       */
613   /*    FT_ENCODING_MS_JOHAB ::                                            */
614   /*      Same as FT_ENCODING_JOHAB.  Deprecated.                          */
615   /*                                                                       */
616   /* <Note>                                                                */
617   /*    By default, FreeType automatically synthesizes a Unicode charmap   */
618   /*    for PostScript fonts, using their glyph names dictionaries.        */
619   /*    However, it also reports the encodings defined explicitly in the   */
620   /*    font file, for the cases when they are needed, with the Adobe      */
621   /*    values as well.                                                    */
622   /*                                                                       */
623   /*    FT_ENCODING_NONE is set by the BDF and PCF drivers if the charmap  */
624   /*    is neither Unicode nor ISO-8859-1 (otherwise it is set to          */
625   /*    FT_ENCODING_UNICODE).  Use @FT_Get_BDF_Charset_ID to find out      */
626   /*    which encoding is really present.  If, for example, the            */
627   /*    `cs_registry' field is `KOI8' and the `cs_encoding' field is `R',  */
628   /*    the font is encoded in KOI8-R.                                     */
629   /*                                                                       */
630   /*    FT_ENCODING_NONE is always set (with a single exception) by the    */
631   /*    winfonts driver.  Use @FT_Get_WinFNT_Header and examine the        */
632   /*    `charset' field of the @FT_WinFNT_HeaderRec structure to find out  */
633   /*    which encoding is really present.  For example,                    */
634   /*    @FT_WinFNT_ID_CP1251 (204) means Windows code page 1251 (for       */
635   /*    Russian).                                                          */
636   /*                                                                       */
637   /*    FT_ENCODING_NONE is set if `platform_id' is @TT_PLATFORM_MACINTOSH */
638   /*    and `encoding_id' is not @TT_MAC_ID_ROMAN (otherwise it is set to  */
639   /*    FT_ENCODING_APPLE_ROMAN).                                          */
640   /*                                                                       */
641   /*    If `platform_id' is @TT_PLATFORM_MACINTOSH, use the function       */
642   /*    @FT_Get_CMap_Language_ID  to query the Mac language ID which may   */
643   /*    be needed to be able to distinguish Apple encoding variants.  See  */
644   /*                                                                       */
645   /*      http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/README.TXT  */
646   /*                                                                       */
647   /*    to get an idea how to do that.  Basically, if the language ID      */
648   /*    is~0, don't use it, otherwise subtract 1 from the language ID.     */
649   /*    Then examine `encoding_id'.  If, for example, `encoding_id' is     */
650   /*    @TT_MAC_ID_ROMAN and the language ID (minus~1) is                  */
651   /*    `TT_MAC_LANGID_GREEK', it is the Greek encoding, not Roman.        */
652   /*    @TT_MAC_ID_ARABIC with `TT_MAC_LANGID_FARSI' means the Farsi       */
653   /*    variant the Arabic encoding.                                       */
654   /*                                                                       */
655   typedef enum  FT_Encoding_
656   {
657     FT_ENC_TAG( FT_ENCODING_NONE, 0, 0, 0, 0 ),
658 
659     FT_ENC_TAG( FT_ENCODING_MS_SYMBOL, 's', 'y', 'm', 'b' ),
660     FT_ENC_TAG( FT_ENCODING_UNICODE,   'u', 'n', 'i', 'c' ),
661 
662     FT_ENC_TAG( FT_ENCODING_SJIS,    's', 'j', 'i', 's' ),
663     FT_ENC_TAG( FT_ENCODING_GB2312,  'g', 'b', ' ', ' ' ),
664     FT_ENC_TAG( FT_ENCODING_BIG5,    'b', 'i', 'g', '5' ),
665     FT_ENC_TAG( FT_ENCODING_WANSUNG, 'w', 'a', 'n', 's' ),
666     FT_ENC_TAG( FT_ENCODING_JOHAB,   'j', 'o', 'h', 'a' ),
667 
668     /* for backwards compatibility */
669     FT_ENCODING_MS_SJIS    = FT_ENCODING_SJIS,
670     FT_ENCODING_MS_GB2312  = FT_ENCODING_GB2312,
671     FT_ENCODING_MS_BIG5    = FT_ENCODING_BIG5,
672     FT_ENCODING_MS_WANSUNG = FT_ENCODING_WANSUNG,
673     FT_ENCODING_MS_JOHAB   = FT_ENCODING_JOHAB,
674 
675     FT_ENC_TAG( FT_ENCODING_ADOBE_STANDARD, 'A', 'D', 'O', 'B' ),
676     FT_ENC_TAG( FT_ENCODING_ADOBE_EXPERT,   'A', 'D', 'B', 'E' ),
677     FT_ENC_TAG( FT_ENCODING_ADOBE_CUSTOM,   'A', 'D', 'B', 'C' ),
678     FT_ENC_TAG( FT_ENCODING_ADOBE_LATIN_1,  'l', 'a', 't', '1' ),
679 
680     FT_ENC_TAG( FT_ENCODING_OLD_LATIN_2, 'l', 'a', 't', '2' ),
681 
682     FT_ENC_TAG( FT_ENCODING_APPLE_ROMAN, 'a', 'r', 'm', 'n' )
683 
684   } FT_Encoding;
685 
686 
687   /*************************************************************************/
688   /*                                                                       */
689   /* <Enum>                                                                */
690   /*    ft_encoding_xxx                                                    */
691   /*                                                                       */
692   /* <Description>                                                         */
693   /*    These constants are deprecated; use the corresponding @FT_Encoding */
694   /*    values instead.                                                    */
695   /*                                                                       */
696 #define ft_encoding_none            FT_ENCODING_NONE
697 #define ft_encoding_unicode         FT_ENCODING_UNICODE
698 #define ft_encoding_symbol          FT_ENCODING_MS_SYMBOL
699 #define ft_encoding_latin_1         FT_ENCODING_ADOBE_LATIN_1
700 #define ft_encoding_latin_2         FT_ENCODING_OLD_LATIN_2
701 #define ft_encoding_sjis            FT_ENCODING_SJIS
702 #define ft_encoding_gb2312          FT_ENCODING_GB2312
703 #define ft_encoding_big5            FT_ENCODING_BIG5
704 #define ft_encoding_wansung         FT_ENCODING_WANSUNG
705 #define ft_encoding_johab           FT_ENCODING_JOHAB
706 
707 #define ft_encoding_adobe_standard  FT_ENCODING_ADOBE_STANDARD
708 #define ft_encoding_adobe_expert    FT_ENCODING_ADOBE_EXPERT
709 #define ft_encoding_adobe_custom    FT_ENCODING_ADOBE_CUSTOM
710 #define ft_encoding_apple_roman     FT_ENCODING_APPLE_ROMAN
711 
712 
713   /*************************************************************************/
714   /*                                                                       */
715   /* <Struct>                                                              */
716   /*    FT_CharMapRec                                                      */
717   /*                                                                       */
718   /* <Description>                                                         */
719   /*    The base charmap structure.                                        */
720   /*                                                                       */
721   /* <Fields>                                                              */
722   /*    face        :: A handle to the parent face object.                 */
723   /*                                                                       */
724   /*    encoding    :: An @FT_Encoding tag identifying the charmap.  Use   */
725   /*                   this with @FT_Select_Charmap.                       */
726   /*                                                                       */
727   /*    platform_id :: An ID number describing the platform for the        */
728   /*                   following encoding ID.  This comes directly from    */
729   /*                   the TrueType specification and should be emulated   */
730   /*                   for other formats.                                  */
731   /*                                                                       */
732   /*    encoding_id :: A platform specific encoding number.  This also     */
733   /*                   comes from the TrueType specification and should be */
734   /*                   emulated similarly.                                 */
735   /*                                                                       */
736   typedef struct  FT_CharMapRec_
737   {
738     FT_Face      face;
739     FT_Encoding  encoding;
740     FT_UShort    platform_id;
741     FT_UShort    encoding_id;
742 
743   } FT_CharMapRec;
744 
745 
746   /*************************************************************************/
747   /*************************************************************************/
748   /*                                                                       */
749   /*                 B A S E   O B J E C T   C L A S S E S                 */
750   /*                                                                       */
751   /*************************************************************************/
752   /*************************************************************************/
753 
754 
755   /*************************************************************************/
756   /*                                                                       */
757   /* <Type>                                                                */
758   /*    FT_Face_Internal                                                   */
759   /*                                                                       */
760   /* <Description>                                                         */
761   /*    An opaque handle to an `FT_Face_InternalRec' structure, used to    */
762   /*    model private data of a given @FT_Face object.                     */
763   /*                                                                       */
764   /*    This structure might change between releases of FreeType~2 and is  */
765   /*    not generally available to client applications.                    */
766   /*                                                                       */
767   typedef struct FT_Face_InternalRec_*  FT_Face_Internal;
768 
769 
770   /*************************************************************************/
771   /*                                                                       */
772   /* <Struct>                                                              */
773   /*    FT_FaceRec                                                         */
774   /*                                                                       */
775   /* <Description>                                                         */
776   /*    FreeType root face class structure.  A face object models a        */
777   /*    typeface in a font file.                                           */
778   /*                                                                       */
779   /* <Fields>                                                              */
780   /*    num_faces           :: The number of faces in the font file.  Some */
781   /*                           font formats can have multiple faces in     */
782   /*                           a font file.                                */
783   /*                                                                       */
784   /*    face_index          :: The index of the face in the font file.  It */
785   /*                           is set to~0 if there is only one face in    */
786   /*                           the font file.                              */
787   /*                                                                       */
788   /*    face_flags          :: A set of bit flags that give important      */
789   /*                           information about the face; see             */
790   /*                           @FT_FACE_FLAG_XXX for the details.          */
791   /*                                                                       */
792   /*    style_flags         :: A set of bit flags indicating the style of  */
793   /*                           the face; see @FT_STYLE_FLAG_XXX for the    */
794   /*                           details.                                    */
795   /*                                                                       */
796   /*    num_glyphs          :: The number of glyphs in the face.  If the   */
797   /*                           face is scalable and has sbits (see         */
798   /*                           `num_fixed_sizes'), it is set to the number */
799   /*                           of outline glyphs.                          */
800   /*                                                                       */
801   /*                           For CID-keyed fonts, this value gives the   */
802   /*                           highest CID used in the font.               */
803   /*                                                                       */
804   /*    family_name         :: The face's family name.  This is an ASCII   */
805   /*                           string, usually in English, which describes */
806   /*                           the typeface's family (like `Times New      */
807   /*                           Roman', `Bodoni', `Garamond', etc).  This   */
808   /*                           is a least common denominator used to list  */
809   /*                           fonts.  Some formats (TrueType & OpenType)  */
810   /*                           provide localized and Unicode versions of   */
811   /*                           this string.  Applications should use the   */
812   /*                           format specific interface to access them.   */
813   /*                           Can be NULL (e.g., in fonts embedded in a   */
814   /*                           PDF file).                                  */
815   /*                                                                       */
816   /*    style_name          :: The face's style name.  This is an ASCII    */
817   /*                           string, usually in English, which describes */
818   /*                           the typeface's style (like `Italic',        */
819   /*                           `Bold', `Condensed', etc).  Not all font    */
820   /*                           formats provide a style name, so this field */
821   /*                           is optional, and can be set to NULL.  As    */
822   /*                           for `family_name', some formats provide     */
823   /*                           localized and Unicode versions of this      */
824   /*                           string.  Applications should use the format */
825   /*                           specific interface to access them.          */
826   /*                                                                       */
827   /*    num_fixed_sizes     :: The number of bitmap strikes in the face.   */
828   /*                           Even if the face is scalable, there might   */
829   /*                           still be bitmap strikes, which are called   */
830   /*                           `sbits' in that case.                       */
831   /*                                                                       */
832   /*    available_sizes     :: An array of @FT_Bitmap_Size for all bitmap  */
833   /*                           strikes in the face.  It is set to NULL if  */
834   /*                           there is no bitmap strike.                  */
835   /*                                                                       */
836   /*    num_charmaps        :: The number of charmaps in the face.         */
837   /*                                                                       */
838   /*    charmaps            :: An array of the charmaps of the face.       */
839   /*                                                                       */
840   /*    generic             :: A field reserved for client uses.  See the  */
841   /*                           @FT_Generic type description.               */
842   /*                                                                       */
843   /*    bbox                :: The font bounding box.  Coordinates are     */
844   /*                           expressed in font units (see                */
845   /*                           `units_per_EM').  The box is large enough   */
846   /*                           to contain any glyph from the font.  Thus,  */
847   /*                           `bbox.yMax' can be seen as the `maximal     */
848   /*                           ascender', and `bbox.yMin' as the `minimal  */
849   /*                           descender'.  Only relevant for scalable     */
850   /*                           formats.                                    */
851   /*                                                                       */
852   /*                           Note that the bounding box might be off by  */
853   /*                           (at least) one pixel for hinted fonts.  See */
854   /*                           @FT_Size_Metrics for further discussion.    */
855   /*                                                                       */
856   /*    units_per_EM        :: The number of font units per EM square for  */
857   /*                           this face.  This is typically 2048 for      */
858   /*                           TrueType fonts, and 1000 for Type~1 fonts.  */
859   /*                           Only relevant for scalable formats.         */
860   /*                                                                       */
861   /*    ascender            :: The typographic ascender of the face,       */
862   /*                           expressed in font units.  For font formats  */
863   /*                           not having this information, it is set to   */
864   /*                           `bbox.yMax'.  Only relevant for scalable    */
865   /*                           formats.                                    */
866   /*                                                                       */
867   /*    descender           :: The typographic descender of the face,      */
868   /*                           expressed in font units.  For font formats  */
869   /*                           not having this information, it is set to   */
870   /*                           `bbox.yMin'.  Note that this field is       */
871   /*                           usually negative.  Only relevant for        */
872   /*                           scalable formats.                           */
873   /*                                                                       */
874   /*    height              :: The height is the vertical distance         */
875   /*                           between two consecutive baselines,          */
876   /*                           expressed in font units.  It is always      */
877   /*                           positive.  Only relevant for scalable       */
878   /*                           formats.                                    */
879   /*                                                                       */
880   /*    max_advance_width   :: The maximal advance width, in font units,   */
881   /*                           for all glyphs in this face.  This can be   */
882   /*                           used to make word wrapping computations     */
883   /*                           faster.  Only relevant for scalable         */
884   /*                           formats.                                    */
885   /*                                                                       */
886   /*    max_advance_height  :: The maximal advance height, in font units,  */
887   /*                           for all glyphs in this face.  This is only  */
888   /*                           relevant for vertical layouts, and is set   */
889   /*                           to `height' for fonts that do not provide   */
890   /*                           vertical metrics.  Only relevant for        */
891   /*                           scalable formats.                           */
892   /*                                                                       */
893   /*    underline_position  :: The position, in font units, of the         */
894   /*                           underline line for this face.  It is the    */
895   /*                           center of the underlining stem.  Only       */
896   /*                           relevant for scalable formats.              */
897   /*                                                                       */
898   /*    underline_thickness :: The thickness, in font units, of the        */
899   /*                           underline for this face.  Only relevant for */
900   /*                           scalable formats.                           */
901   /*                                                                       */
902   /*    glyph               :: The face's associated glyph slot(s).        */
903   /*                                                                       */
904   /*    size                :: The current active size for this face.      */
905   /*                                                                       */
906   /*    charmap             :: The current active charmap for this face.   */
907   /*                                                                       */
908   /* <Note>                                                                */
909   /*    Fields may be changed after a call to @FT_Attach_File or           */
910   /*    @FT_Attach_Stream.                                                 */
911   /*                                                                       */
912   typedef struct  FT_FaceRec_
913   {
914     FT_Long           num_faces;
915     FT_Long           face_index;
916 
917     FT_Long           face_flags;
918     FT_Long           style_flags;
919 
920     FT_Long           num_glyphs;
921 
922     FT_String*        family_name;
923     FT_String*        style_name;
924 
925     FT_Int            num_fixed_sizes;
926     FT_Bitmap_Size*   available_sizes;
927 
928     FT_Int            num_charmaps;
929     FT_CharMap*       charmaps;
930 
931     FT_Generic        generic;
932 
933     /*# The following member variables (down to `underline_thickness') */
934     /*# are only relevant to scalable outlines; cf. @FT_Bitmap_Size    */
935     /*# for bitmap fonts.                                              */
936     FT_BBox           bbox;
937 
938     FT_UShort         units_per_EM;
939     FT_Short          ascender;
940     FT_Short          descender;
941     FT_Short          height;
942 
943     FT_Short          max_advance_width;
944     FT_Short          max_advance_height;
945 
946     FT_Short          underline_position;
947     FT_Short          underline_thickness;
948 
949     FT_GlyphSlot      glyph;
950     FT_Size           size;
951     FT_CharMap        charmap;
952 
953     /*@private begin */
954 
955     FT_Driver         driver;
956     FT_Memory         memory;
957     FT_Stream         stream;
958 
959     FT_ListRec        sizes_list;
960 
961     FT_Generic        autohint;
962     void*             extensions;
963 
964     FT_Face_Internal  internal;
965 
966     /*@private end */
967 
968   } FT_FaceRec;
969 
970 
971   /*************************************************************************/
972   /*                                                                       */
973   /* <Enum>                                                                */
974   /*    FT_FACE_FLAG_XXX                                                   */
975   /*                                                                       */
976   /* <Description>                                                         */
977   /*    A list of bit flags used in the `face_flags' field of the          */
978   /*    @FT_FaceRec structure.  They inform client applications of         */
979   /*    properties of the corresponding face.                              */
980   /*                                                                       */
981   /* <Values>                                                              */
982   /*    FT_FACE_FLAG_SCALABLE ::                                           */
983   /*      Indicates that the face contains outline glyphs.  This doesn't   */
984   /*      prevent bitmap strikes, i.e., a face can have both this and      */
985   /*      and @FT_FACE_FLAG_FIXED_SIZES set.                               */
986   /*                                                                       */
987   /*    FT_FACE_FLAG_FIXED_SIZES ::                                        */
988   /*      Indicates that the face contains bitmap strikes.  See also the   */
989   /*      `num_fixed_sizes' and `available_sizes' fields of @FT_FaceRec.   */
990   /*                                                                       */
991   /*    FT_FACE_FLAG_FIXED_WIDTH ::                                        */
992   /*      Indicates that the face contains fixed-width characters (like    */
993   /*      Courier, Lucido, MonoType, etc.).                                */
994   /*                                                                       */
995   /*    FT_FACE_FLAG_SFNT ::                                               */
996   /*      Indicates that the face uses the `sfnt' storage scheme.  For     */
997   /*      now, this means TrueType and OpenType.                           */
998   /*                                                                       */
999   /*    FT_FACE_FLAG_HORIZONTAL ::                                         */
1000   /*      Indicates that the face contains horizontal glyph metrics.  This */
1001   /*      should be set for all common formats.                            */
1002   /*                                                                       */
1003   /*    FT_FACE_FLAG_VERTICAL ::                                           */
1004   /*      Indicates that the face contains vertical glyph metrics.  This   */
1005   /*      is only available in some formats, not all of them.              */
1006   /*                                                                       */
1007   /*    FT_FACE_FLAG_KERNING ::                                            */
1008   /*      Indicates that the face contains kerning information.  If set,   */
1009   /*      the kerning distance can be retrieved through the function       */
1010   /*      @FT_Get_Kerning.  Otherwise the function always return the       */
1011   /*      vector (0,0).  Note that FreeType doesn't handle kerning data    */
1012   /*      from the `GPOS' table (as present in some OpenType fonts).       */
1013   /*                                                                       */
1014   /*    FT_FACE_FLAG_FAST_GLYPHS ::                                        */
1015   /*      THIS FLAG IS DEPRECATED.  DO NOT USE OR TEST IT.                 */
1016   /*                                                                       */
1017   /*    FT_FACE_FLAG_MULTIPLE_MASTERS ::                                   */
1018   /*      Indicates that the font contains multiple masters and is capable */
1019   /*      of interpolating between them.  See the multiple-masters         */
1020   /*      specific API for details.                                        */
1021   /*                                                                       */
1022   /*    FT_FACE_FLAG_GLYPH_NAMES ::                                        */
1023   /*      Indicates that the font contains glyph names that can be         */
1024   /*      retrieved through @FT_Get_Glyph_Name.  Note that some TrueType   */
1025   /*      fonts contain broken glyph name tables.  Use the function        */
1026   /*      @FT_Has_PS_Glyph_Names when needed.                              */
1027   /*                                                                       */
1028   /*    FT_FACE_FLAG_EXTERNAL_STREAM ::                                    */
1029   /*      Used internally by FreeType to indicate that a face's stream was */
1030   /*      provided by the client application and should not be destroyed   */
1031   /*      when @FT_Done_Face is called.  Don't read or test this flag.     */
1032   /*                                                                       */
1033   /*    FT_FACE_FLAG_HINTER ::                                             */
1034   /*      Set if the font driver has a hinting machine of its own.  For    */
1035   /*      example, with TrueType fonts, it makes sense to use data from    */
1036   /*      the SFNT `gasp' table only if the native TrueType hinting engine */
1037   /*      (with the bytecode interpreter) is available and active.         */
1038   /*                                                                       */
1039   /*    FT_FACE_FLAG_CID_KEYED ::                                          */
1040   /*      Set if the font is CID-keyed.  In that case, the font is not     */
1041   /*      accessed by glyph indices but by CID values.  For subsetted      */
1042   /*      CID-keyed fonts this has the consequence that not all index      */
1043   /*      values are a valid argument to FT_Load_Glyph.  Only the CID      */
1044   /*      values for which corresponding glyphs in the subsetted font      */
1045   /*      exist make FT_Load_Glyph return successfully; in all other cases */
1046   /*      you get an `FT_Err_Invalid_Argument' error.                      */
1047   /*                                                                       */
1048   /*      Note that CID-keyed fonts which are in an SFNT wrapper don't     */
1049   /*      have this flag set since the glyphs are accessed in the normal   */
1050   /*      way (using contiguous indices); the `CID-ness' isn't visible to  */
1051   /*      the application.                                                 */
1052   /*                                                                       */
1053   /*    FT_FACE_FLAG_TRICKY ::                                             */
1054   /*      Set if the font is `tricky', this is, it always needs the        */
1055   /*      font format's native hinting engine to get a reasonable result.  */
1056   /*      A typical example is the Chinese font `mingli.ttf' which uses    */
1057   /*      TrueType bytecode instructions to move and scale all of its      */
1058   /*      subglyphs.                                                       */
1059   /*                                                                       */
1060   /*      It is not possible to autohint such fonts using                  */
1061   /*      @FT_LOAD_FORCE_AUTOHINT; it will also ignore                     */
1062   /*      @FT_LOAD_NO_HINTING.  You have to set both @FT_LOAD_NO_HINTING   */
1063   /*      and @FT_LOAD_NO_AUTOHINT to really disable hinting; however, you */
1064   /*      probably never want this except for demonstration purposes.      */
1065   /*                                                                       */
1066   /*      Currently, there are about a dozen TrueType fonts in the list of */
1067   /*      tricky fonts; they are hard-coded in file `ttobjs.c'.            */
1068   /*                                                                       */
1069 #define FT_FACE_FLAG_SCALABLE          ( 1L <<  0 )
1070 #define FT_FACE_FLAG_FIXED_SIZES       ( 1L <<  1 )
1071 #define FT_FACE_FLAG_FIXED_WIDTH       ( 1L <<  2 )
1072 #define FT_FACE_FLAG_SFNT              ( 1L <<  3 )
1073 #define FT_FACE_FLAG_HORIZONTAL        ( 1L <<  4 )
1074 #define FT_FACE_FLAG_VERTICAL          ( 1L <<  5 )
1075 #define FT_FACE_FLAG_KERNING           ( 1L <<  6 )
1076 #define FT_FACE_FLAG_FAST_GLYPHS       ( 1L <<  7 )
1077 #define FT_FACE_FLAG_MULTIPLE_MASTERS  ( 1L <<  8 )
1078 #define FT_FACE_FLAG_GLYPH_NAMES       ( 1L <<  9 )
1079 #define FT_FACE_FLAG_EXTERNAL_STREAM   ( 1L << 10 )
1080 #define FT_FACE_FLAG_HINTER            ( 1L << 11 )
1081 #define FT_FACE_FLAG_CID_KEYED         ( 1L << 12 )
1082 #define FT_FACE_FLAG_TRICKY            ( 1L << 13 )
1083 
1084 
1085   /*************************************************************************
1086    *
1087    * @macro:
1088    *   FT_HAS_HORIZONTAL( face )
1089    *
1090    * @description:
1091    *   A macro that returns true whenever a face object contains
1092    *   horizontal metrics (this is true for all font formats though).
1093    *
1094    * @also:
1095    *   @FT_HAS_VERTICAL can be used to check for vertical metrics.
1096    *
1097    */
1098 #define FT_HAS_HORIZONTAL( face ) \
1099           ( face->face_flags & FT_FACE_FLAG_HORIZONTAL )
1100 
1101 
1102   /*************************************************************************
1103    *
1104    * @macro:
1105    *   FT_HAS_VERTICAL( face )
1106    *
1107    * @description:
1108    *   A macro that returns true whenever a face object contains vertical
1109    *   metrics.
1110    *
1111    */
1112 #define FT_HAS_VERTICAL( face ) \
1113           ( face->face_flags & FT_FACE_FLAG_VERTICAL )
1114 
1115 
1116   /*************************************************************************
1117    *
1118    * @macro:
1119    *   FT_HAS_KERNING( face )
1120    *
1121    * @description:
1122    *   A macro that returns true whenever a face object contains kerning
1123    *   data that can be accessed with @FT_Get_Kerning.
1124    *
1125    */
1126 #define FT_HAS_KERNING( face ) \
1127           ( face->face_flags & FT_FACE_FLAG_KERNING )
1128 
1129 
1130   /*************************************************************************
1131    *
1132    * @macro:
1133    *   FT_IS_SCALABLE( face )
1134    *
1135    * @description:
1136    *   A macro that returns true whenever a face object contains a scalable
1137    *   font face (true for TrueType, Type~1, Type~42, CID, OpenType/CFF,
1138    *   and PFR font formats.
1139    *
1140    */
1141 #define FT_IS_SCALABLE( face ) \
1142           ( face->face_flags & FT_FACE_FLAG_SCALABLE )
1143 
1144 
1145   /*************************************************************************
1146    *
1147    * @macro:
1148    *   FT_IS_SFNT( face )
1149    *
1150    * @description:
1151    *   A macro that returns true whenever a face object contains a font
1152    *   whose format is based on the SFNT storage scheme.  This usually
1153    *   means: TrueType fonts, OpenType fonts, as well as SFNT-based embedded
1154    *   bitmap fonts.
1155    *
1156    *   If this macro is true, all functions defined in @FT_SFNT_NAMES_H and
1157    *   @FT_TRUETYPE_TABLES_H are available.
1158    *
1159    */
1160 #define FT_IS_SFNT( face ) \
1161           ( face->face_flags & FT_FACE_FLAG_SFNT )
1162 
1163 
1164   /*************************************************************************
1165    *
1166    * @macro:
1167    *   FT_IS_FIXED_WIDTH( face )
1168    *
1169    * @description:
1170    *   A macro that returns true whenever a face object contains a font face
1171    *   that contains fixed-width (or `monospace', `fixed-pitch', etc.)
1172    *   glyphs.
1173    *
1174    */
1175 #define FT_IS_FIXED_WIDTH( face ) \
1176           ( face->face_flags & FT_FACE_FLAG_FIXED_WIDTH )
1177 
1178 
1179   /*************************************************************************
1180    *
1181    * @macro:
1182    *   FT_HAS_FIXED_SIZES( face )
1183    *
1184    * @description:
1185    *   A macro that returns true whenever a face object contains some
1186    *   embedded bitmaps.  See the `available_sizes' field of the
1187    *   @FT_FaceRec structure.
1188    *
1189    */
1190 #define FT_HAS_FIXED_SIZES( face ) \
1191           ( face->face_flags & FT_FACE_FLAG_FIXED_SIZES )
1192 
1193 
1194   /*************************************************************************
1195    *
1196    * @macro:
1197    *   FT_HAS_FAST_GLYPHS( face )
1198    *
1199    * @description:
1200    *   Deprecated.
1201    *
1202    */
1203 #define FT_HAS_FAST_GLYPHS( face )  0
1204 
1205 
1206   /*************************************************************************
1207    *
1208    * @macro:
1209    *   FT_HAS_GLYPH_NAMES( face )
1210    *
1211    * @description:
1212    *   A macro that returns true whenever a face object contains some glyph
1213    *   names that can be accessed through @FT_Get_Glyph_Name.
1214    *
1215    */
1216 #define FT_HAS_GLYPH_NAMES( face ) \
1217           ( face->face_flags & FT_FACE_FLAG_GLYPH_NAMES )
1218 
1219 
1220   /*************************************************************************
1221    *
1222    * @macro:
1223    *   FT_HAS_MULTIPLE_MASTERS( face )
1224    *
1225    * @description:
1226    *   A macro that returns true whenever a face object contains some
1227    *   multiple masters.  The functions provided by @FT_MULTIPLE_MASTERS_H
1228    *   are then available to choose the exact design you want.
1229    *
1230    */
1231 #define FT_HAS_MULTIPLE_MASTERS( face ) \
1232           ( face->face_flags & FT_FACE_FLAG_MULTIPLE_MASTERS )
1233 
1234 
1235   /*************************************************************************
1236    *
1237    * @macro:
1238    *   FT_IS_CID_KEYED( face )
1239    *
1240    * @description:
1241    *   A macro that returns true whenever a face object contains a CID-keyed
1242    *   font.  See the discussion of @FT_FACE_FLAG_CID_KEYED for more
1243    *   details.
1244    *
1245    *   If this macro is true, all functions defined in @FT_CID_H are
1246    *   available.
1247    *
1248    */
1249 #define FT_IS_CID_KEYED( face ) \
1250           ( face->face_flags & FT_FACE_FLAG_CID_KEYED )
1251 
1252 
1253   /*************************************************************************
1254    *
1255    * @macro:
1256    *   FT_IS_TRICKY( face )
1257    *
1258    * @description:
1259    *   A macro that returns true whenever a face represents a `tricky' font.
1260    *   See the discussion of @FT_FACE_FLAG_TRICKY for more details.
1261    *
1262    */
1263 #define FT_IS_TRICKY( face ) \
1264           ( face->face_flags & FT_FACE_FLAG_TRICKY )
1265 
1266 
1267   /*************************************************************************/
1268   /*                                                                       */
1269   /* <Const>                                                               */
1270   /*    FT_STYLE_FLAG_XXX                                                  */
1271   /*                                                                       */
1272   /* <Description>                                                         */
1273   /*    A list of bit-flags used to indicate the style of a given face.    */
1274   /*    These are used in the `style_flags' field of @FT_FaceRec.          */
1275   /*                                                                       */
1276   /* <Values>                                                              */
1277   /*    FT_STYLE_FLAG_ITALIC ::                                            */
1278   /*      Indicates that a given face style is italic or oblique.          */
1279   /*                                                                       */
1280   /*    FT_STYLE_FLAG_BOLD ::                                              */
1281   /*      Indicates that a given face is bold.                             */
1282   /*                                                                       */
1283   /* <Note>                                                                */
1284   /*    The style information as provided by FreeType is very basic.  More */
1285   /*    details are beyond the scope and should be done on a higher level  */
1286   /*    (for example, by analyzing various fields of the `OS/2' table in   */
1287   /*    SFNT based fonts).                                                 */
1288   /*                                                                       */
1289 #define FT_STYLE_FLAG_ITALIC  ( 1 << 0 )
1290 #define FT_STYLE_FLAG_BOLD    ( 1 << 1 )
1291 
1292 
1293   /*************************************************************************/
1294   /*                                                                       */
1295   /* <Type>                                                                */
1296   /*    FT_Size_Internal                                                   */
1297   /*                                                                       */
1298   /* <Description>                                                         */
1299   /*    An opaque handle to an `FT_Size_InternalRec' structure, used to    */
1300   /*    model private data of a given @FT_Size object.                     */
1301   /*                                                                       */
1302   typedef struct FT_Size_InternalRec_*  FT_Size_Internal;
1303 
1304 
1305   /*************************************************************************/
1306   /*                                                                       */
1307   /* <Struct>                                                              */
1308   /*    FT_Size_Metrics                                                    */
1309   /*                                                                       */
1310   /* <Description>                                                         */
1311   /*    The size metrics structure gives the metrics of a size object.     */
1312   /*                                                                       */
1313   /* <Fields>                                                              */
1314   /*    x_ppem       :: The width of the scaled EM square in pixels, hence */
1315   /*                    the term `ppem' (pixels per EM).  It is also       */
1316   /*                    referred to as `nominal width'.                    */
1317   /*                                                                       */
1318   /*    y_ppem       :: The height of the scaled EM square in pixels,      */
1319   /*                    hence the term `ppem' (pixels per EM).  It is also */
1320   /*                    referred to as `nominal height'.                   */
1321   /*                                                                       */
1322   /*    x_scale      :: A 16.16 fractional scaling value used to convert   */
1323   /*                    horizontal metrics from font units to 26.6         */
1324   /*                    fractional pixels.  Only relevant for scalable     */
1325   /*                    font formats.                                      */
1326   /*                                                                       */
1327   /*    y_scale      :: A 16.16 fractional scaling value used to convert   */
1328   /*                    vertical metrics from font units to 26.6           */
1329   /*                    fractional pixels.  Only relevant for scalable     */
1330   /*                    font formats.                                      */
1331   /*                                                                       */
1332   /*    ascender     :: The ascender in 26.6 fractional pixels.  See       */
1333   /*                    @FT_FaceRec for the details.                       */
1334   /*                                                                       */
1335   /*    descender    :: The descender in 26.6 fractional pixels.  See      */
1336   /*                    @FT_FaceRec for the details.                       */
1337   /*                                                                       */
1338   /*    height       :: The height in 26.6 fractional pixels.  See         */
1339   /*                    @FT_FaceRec for the details.                       */
1340   /*                                                                       */
1341   /*    max_advance  :: The maximal advance width in 26.6 fractional       */
1342   /*                    pixels.  See @FT_FaceRec for the details.          */
1343   /*                                                                       */
1344   /* <Note>                                                                */
1345   /*    The scaling values, if relevant, are determined first during a     */
1346   /*    size changing operation.  The remaining fields are then set by the */
1347   /*    driver.  For scalable formats, they are usually set to scaled      */
1348   /*    values of the corresponding fields in @FT_FaceRec.                 */
1349   /*                                                                       */
1350   /*    Note that due to glyph hinting, these values might not be exact    */
1351   /*    for certain fonts.  Thus they must be treated as unreliable        */
1352   /*    with an error margin of at least one pixel!                        */
1353   /*                                                                       */
1354   /*    Indeed, the only way to get the exact metrics is to render _all_   */
1355   /*    glyphs.  As this would be a definite performance hit, it is up to  */
1356   /*    client applications to perform such computations.                  */
1357   /*                                                                       */
1358   /*    The FT_Size_Metrics structure is valid for bitmap fonts also.      */
1359   /*                                                                       */
1360   typedef struct  FT_Size_Metrics_
1361   {
1362     FT_UShort  x_ppem;      /* horizontal pixels per EM               */
1363     FT_UShort  y_ppem;      /* vertical pixels per EM                 */
1364 
1365     FT_Fixed   x_scale;     /* scaling values used to convert font    */
1366     FT_Fixed   y_scale;     /* units to 26.6 fractional pixels        */
1367 
1368     FT_Pos     ascender;    /* ascender in 26.6 frac. pixels          */
1369     FT_Pos     descender;   /* descender in 26.6 frac. pixels         */
1370     FT_Pos     height;      /* text height in 26.6 frac. pixels       */
1371     FT_Pos     max_advance; /* max horizontal advance, in 26.6 pixels */
1372 
1373   } FT_Size_Metrics;
1374 
1375 
1376   /*************************************************************************/
1377   /*                                                                       */
1378   /* <Struct>                                                              */
1379   /*    FT_SizeRec                                                         */
1380   /*                                                                       */
1381   /* <Description>                                                         */
1382   /*    FreeType root size class structure.  A size object models a face   */
1383   /*    object at a given size.                                            */
1384   /*                                                                       */
1385   /* <Fields>                                                              */
1386   /*    face    :: Handle to the parent face object.                       */
1387   /*                                                                       */
1388   /*    generic :: A typeless pointer, which is unused by the FreeType     */
1389   /*               library or any of its drivers.  It can be used by       */
1390   /*               client applications to link their own data to each size */
1391   /*               object.                                                 */
1392   /*                                                                       */
1393   /*    metrics :: Metrics for this size object.  This field is read-only. */
1394   /*                                                                       */
1395   typedef struct  FT_SizeRec_
1396   {
1397     FT_Face           face;      /* parent face object              */
1398     FT_Generic        generic;   /* generic pointer for client uses */
1399     FT_Size_Metrics   metrics;   /* size metrics                    */
1400     FT_Size_Internal  internal;
1401 
1402   } FT_SizeRec;
1403 
1404 
1405   /*************************************************************************/
1406   /*                                                                       */
1407   /* <Struct>                                                              */
1408   /*    FT_SubGlyph                                                        */
1409   /*                                                                       */
1410   /* <Description>                                                         */
1411   /*    The subglyph structure is an internal object used to describe      */
1412   /*    subglyphs (for example, in the case of composites).                */
1413   /*                                                                       */
1414   /* <Note>                                                                */
1415   /*    The subglyph implementation is not part of the high-level API,     */
1416   /*    hence the forward structure declaration.                           */
1417   /*                                                                       */
1418   /*    You can however retrieve subglyph information with                 */
1419   /*    @FT_Get_SubGlyph_Info.                                             */
1420   /*                                                                       */
1421   typedef struct FT_SubGlyphRec_*  FT_SubGlyph;
1422 
1423 
1424   /*************************************************************************/
1425   /*                                                                       */
1426   /* <Type>                                                                */
1427   /*    FT_Slot_Internal                                                   */
1428   /*                                                                       */
1429   /* <Description>                                                         */
1430   /*    An opaque handle to an `FT_Slot_InternalRec' structure, used to    */
1431   /*    model private data of a given @FT_GlyphSlot object.                */
1432   /*                                                                       */
1433   typedef struct FT_Slot_InternalRec_*  FT_Slot_Internal;
1434 
1435 
1436   /*************************************************************************/
1437   /*                                                                       */
1438   /* <Struct>                                                              */
1439   /*    FT_GlyphSlotRec                                                    */
1440   /*                                                                       */
1441   /* <Description>                                                         */
1442   /*    FreeType root glyph slot class structure.  A glyph slot is a       */
1443   /*    container where individual glyphs can be loaded, be they in        */
1444   /*    outline or bitmap format.                                          */
1445   /*                                                                       */
1446   /* <Fields>                                                              */
1447   /*    library           :: A handle to the FreeType library instance     */
1448   /*                         this slot belongs to.                         */
1449   /*                                                                       */
1450   /*    face              :: A handle to the parent face object.           */
1451   /*                                                                       */
1452   /*    next              :: In some cases (like some font tools), several */
1453   /*                         glyph slots per face object can be a good     */
1454   /*                         thing.  As this is rare, the glyph slots are  */
1455   /*                         listed through a direct, single-linked list   */
1456   /*                         using its `next' field.                       */
1457   /*                                                                       */
1458   /*    generic           :: A typeless pointer which is unused by the     */
1459   /*                         FreeType library or any of its drivers.  It   */
1460   /*                         can be used by client applications to link    */
1461   /*                         their own data to each glyph slot object.     */
1462   /*                                                                       */
1463   /*    metrics           :: The metrics of the last loaded glyph in the   */
1464   /*                         slot.  The returned values depend on the last */
1465   /*                         load flags (see the @FT_Load_Glyph API        */
1466   /*                         function) and can be expressed either in 26.6 */
1467   /*                         fractional pixels or font units.              */
1468   /*                                                                       */
1469   /*                         Note that even when the glyph image is        */
1470   /*                         transformed, the metrics are not.             */
1471   /*                                                                       */
1472   /*    linearHoriAdvance :: The advance width of the unhinted glyph.      */
1473   /*                         Its value is expressed in 16.16 fractional    */
1474   /*                         pixels, unless @FT_LOAD_LINEAR_DESIGN is set  */
1475   /*                         when loading the glyph.  This field can be    */
1476   /*                         important to perform correct WYSIWYG layout.  */
1477   /*                         Only relevant for outline glyphs.             */
1478   /*                                                                       */
1479   /*    linearVertAdvance :: The advance height of the unhinted glyph.     */
1480   /*                         Its value is expressed in 16.16 fractional    */
1481   /*                         pixels, unless @FT_LOAD_LINEAR_DESIGN is set  */
1482   /*                         when loading the glyph.  This field can be    */
1483   /*                         important to perform correct WYSIWYG layout.  */
1484   /*                         Only relevant for outline glyphs.             */
1485   /*                                                                       */
1486   /*    advance           :: This shorthand is, depending on               */
1487   /*                         @FT_LOAD_IGNORE_TRANSFORM, the transformed    */
1488   /*                         advance width for the glyph (in 26.6          */
1489   /*                         fractional pixel format).  As specified with  */
1490   /*                         @FT_LOAD_VERTICAL_LAYOUT, it uses either the  */
1491   /*                         `horiAdvance' or the `vertAdvance' value of   */
1492   /*                         `metrics' field.                              */
1493   /*                                                                       */
1494   /*    format            :: This field indicates the format of the image  */
1495   /*                         contained in the glyph slot.  Typically       */
1496   /*                         @FT_GLYPH_FORMAT_BITMAP,                      */
1497   /*                         @FT_GLYPH_FORMAT_OUTLINE, or                  */
1498   /*                         @FT_GLYPH_FORMAT_COMPOSITE, but others are    */
1499   /*                         possible.                                     */
1500   /*                                                                       */
1501   /*    bitmap            :: This field is used as a bitmap descriptor     */
1502   /*                         when the slot format is                       */
1503   /*                         @FT_GLYPH_FORMAT_BITMAP.  Note that the       */
1504   /*                         address and content of the bitmap buffer can  */
1505   /*                         change between calls of @FT_Load_Glyph and a  */
1506   /*                         few other functions.                          */
1507   /*                                                                       */
1508   /*    bitmap_left       :: This is the bitmap's left bearing expressed   */
1509   /*                         in integer pixels.  Of course, this is only   */
1510   /*                         valid if the format is                        */
1511   /*                         @FT_GLYPH_FORMAT_BITMAP.                      */
1512   /*                                                                       */
1513   /*    bitmap_top        :: This is the bitmap's top bearing expressed in */
1514   /*                         integer pixels.  Remember that this is the    */
1515   /*                         distance from the baseline to the top-most    */
1516   /*                         glyph scanline, upwards y~coordinates being   */
1517   /*                         *positive*.                                   */
1518   /*                                                                       */
1519   /*    outline           :: The outline descriptor for the current glyph  */
1520   /*                         image if its format is                        */
1521   /*                         @FT_GLYPH_FORMAT_OUTLINE.  Once a glyph is    */
1522   /*                         loaded, `outline' can be transformed,         */
1523   /*                         distorted, embolded, etc.  However, it must   */
1524   /*                         not be freed.                                 */
1525   /*                                                                       */
1526   /*    num_subglyphs     :: The number of subglyphs in a composite glyph. */
1527   /*                         This field is only valid for the composite    */
1528   /*                         glyph format that should normally only be     */
1529   /*                         loaded with the @FT_LOAD_NO_RECURSE flag.     */
1530   /*                         For now this is internal to FreeType.         */
1531   /*                                                                       */
1532   /*    subglyphs         :: An array of subglyph descriptors for          */
1533   /*                         composite glyphs.  There are `num_subglyphs'  */
1534   /*                         elements in there.  Currently internal to     */
1535   /*                         FreeType.                                     */
1536   /*                                                                       */
1537   /*    control_data      :: Certain font drivers can also return the      */
1538   /*                         control data for a given glyph image (e.g.    */
1539   /*                         TrueType bytecode, Type~1 charstrings, etc.). */
1540   /*                         This field is a pointer to such data.         */
1541   /*                                                                       */
1542   /*    control_len       :: This is the length in bytes of the control    */
1543   /*                         data.                                         */
1544   /*                                                                       */
1545   /*    other             :: Really wicked formats can use this pointer to */
1546   /*                         present their own glyph image to client       */
1547   /*                         applications.  Note that the application      */
1548   /*                         needs to know about the image format.         */
1549   /*                                                                       */
1550   /*    lsb_delta         :: The difference between hinted and unhinted    */
1551   /*                         left side bearing while autohinting is        */
1552   /*                         active.  Zero otherwise.                      */
1553   /*                                                                       */
1554   /*    rsb_delta         :: The difference between hinted and unhinted    */
1555   /*                         right side bearing while autohinting is       */
1556   /*                         active.  Zero otherwise.                      */
1557   /*                                                                       */
1558   /* <Note>                                                                */
1559   /*    If @FT_Load_Glyph is called with default flags (see                */
1560   /*    @FT_LOAD_DEFAULT) the glyph image is loaded in the glyph slot in   */
1561   /*    its native format (e.g., an outline glyph for TrueType and Type~1  */
1562   /*    formats).                                                          */
1563   /*                                                                       */
1564   /*    This image can later be converted into a bitmap by calling         */
1565   /*    @FT_Render_Glyph.  This function finds the current renderer for    */
1566   /*    the native image's format, then invokes it.                        */
1567   /*                                                                       */
1568   /*    The renderer is in charge of transforming the native image through */
1569   /*    the slot's face transformation fields, then converting it into a   */
1570   /*    bitmap that is returned in `slot->bitmap'.                         */
1571   /*                                                                       */
1572   /*    Note that `slot->bitmap_left' and `slot->bitmap_top' are also used */
1573   /*    to specify the position of the bitmap relative to the current pen  */
1574   /*    position (e.g., coordinates (0,0) on the baseline).  Of course,    */
1575   /*    `slot->format' is also changed to @FT_GLYPH_FORMAT_BITMAP.         */
1576   /*                                                                       */
1577   /* <Note>                                                                */
1578   /*    Here a small pseudo code fragment which shows how to use           */
1579   /*    `lsb_delta' and `rsb_delta':                                       */
1580   /*                                                                       */
1581   /*    {                                                                  */
1582   /*      FT_Pos  origin_x       = 0;                                      */
1583   /*      FT_Pos  prev_rsb_delta = 0;                                      */
1584   /*                                                                       */
1585   /*                                                                       */
1586   /*      for all glyphs do                                                */
1587   /*        <compute kern between current and previous glyph and add it to */
1588   /*         `origin_x'>                                                   */
1589   /*                                                                       */
1590   /*        <load glyph with `FT_Load_Glyph'>                              */
1591   /*                                                                       */
1592   /*        if ( prev_rsb_delta - face->glyph->lsb_delta >= 32 )           */
1593   /*          origin_x -= 64;                                              */
1594   /*        else if ( prev_rsb_delta - face->glyph->lsb_delta < -32 )      */
1595   /*          origin_x += 64;                                              */
1596   /*                                                                       */
1597   /*        prev_rsb_delta = face->glyph->rsb_delta;                       */
1598   /*                                                                       */
1599   /*        <save glyph image, or render glyph, or ...>                    */
1600   /*                                                                       */
1601   /*        origin_x += face->glyph->advance.x;                            */
1602   /*      endfor                                                           */
1603   /*    }                                                                  */
1604   /*                                                                       */
1605   typedef struct  FT_GlyphSlotRec_
1606   {
1607     FT_Library        library;
1608     FT_Face           face;
1609     FT_GlyphSlot      next;
1610     FT_UInt           reserved;       /* retained for binary compatibility */
1611     FT_Generic        generic;
1612 
1613     FT_Glyph_Metrics  metrics;
1614     FT_Fixed          linearHoriAdvance;
1615     FT_Fixed          linearVertAdvance;
1616     FT_Vector         advance;
1617 
1618     FT_Glyph_Format   format;
1619 
1620     FT_Bitmap         bitmap;
1621     FT_Int            bitmap_left;
1622     FT_Int            bitmap_top;
1623 
1624     FT_Outline        outline;
1625 
1626     FT_UInt           num_subglyphs;
1627     FT_SubGlyph       subglyphs;
1628 
1629     void*             control_data;
1630     long              control_len;
1631 
1632     FT_Pos            lsb_delta;
1633     FT_Pos            rsb_delta;
1634 
1635     void*             other;
1636 
1637     FT_Slot_Internal  internal;
1638 
1639   } FT_GlyphSlotRec;
1640 
1641 
1642   /*************************************************************************/
1643   /*************************************************************************/
1644   /*                                                                       */
1645   /*                         F U N C T I O N S                             */
1646   /*                                                                       */
1647   /*************************************************************************/
1648   /*************************************************************************/
1649 
1650 
1651   /*************************************************************************/
1652   /*                                                                       */
1653   /* <Function>                                                            */
1654   /*    FT_Init_FreeType                                                   */
1655   /*                                                                       */
1656   /* <Description>                                                         */
1657   /*    Initialize a new FreeType library object.  The set of modules      */
1658   /*    that are registered by this function is determined at build time.  */
1659   /*                                                                       */
1660   /* <Output>                                                              */
1661   /*    alibrary :: A handle to a new library object.                      */
1662   /*                                                                       */
1663   /* <Return>                                                              */
1664   /*    FreeType error code.  0~means success.                             */
1665   /*                                                                       */
1666   /* <Note>                                                                */
1667   /*    In case you want to provide your own memory allocating routines,   */
1668   /*    use @FT_New_Library instead, followed by a call to                 */
1669   /*    @FT_Add_Default_Modules (or a series of calls to @FT_Add_Module).  */
1670   /*                                                                       */
1671   FT_EXPORT( FT_Error )
1672   FT_Init_FreeType( FT_Library  *alibrary );
1673 
1674 
1675   /*************************************************************************/
1676   /*                                                                       */
1677   /* <Function>                                                            */
1678   /*    FT_Done_FreeType                                                   */
1679   /*                                                                       */
1680   /* <Description>                                                         */
1681   /*    Destroy a given FreeType library object and all of its children,   */
1682   /*    including resources, drivers, faces, sizes, etc.                   */
1683   /*                                                                       */
1684   /* <Input>                                                               */
1685   /*    library :: A handle to the target library object.                  */
1686   /*                                                                       */
1687   /* <Return>                                                              */
1688   /*    FreeType error code.  0~means success.                             */
1689   /*                                                                       */
1690   FT_EXPORT( FT_Error )
1691   FT_Done_FreeType( FT_Library  library );
1692 
1693 
1694   /*************************************************************************/
1695   /*                                                                       */
1696   /* <Enum>                                                                */
1697   /*    FT_OPEN_XXX                                                        */
1698   /*                                                                       */
1699   /* <Description>                                                         */
1700   /*    A list of bit-field constants used within the `flags' field of the */
1701   /*    @FT_Open_Args structure.                                           */
1702   /*                                                                       */
1703   /* <Values>                                                              */
1704   /*    FT_OPEN_MEMORY   :: This is a memory-based stream.                 */
1705   /*                                                                       */
1706   /*    FT_OPEN_STREAM   :: Copy the stream from the `stream' field.       */
1707   /*                                                                       */
1708   /*    FT_OPEN_PATHNAME :: Create a new input stream from a C~path        */
1709   /*                        name.                                          */
1710   /*                                                                       */
1711   /*    FT_OPEN_DRIVER   :: Use the `driver' field.                        */
1712   /*                                                                       */
1713   /*    FT_OPEN_PARAMS   :: Use the `num_params' and `params' fields.      */
1714   /*                                                                       */
1715   /*    ft_open_memory   :: Deprecated; use @FT_OPEN_MEMORY instead.       */
1716   /*                                                                       */
1717   /*    ft_open_stream   :: Deprecated; use @FT_OPEN_STREAM instead.       */
1718   /*                                                                       */
1719   /*    ft_open_pathname :: Deprecated; use @FT_OPEN_PATHNAME instead.     */
1720   /*                                                                       */
1721   /*    ft_open_driver   :: Deprecated; use @FT_OPEN_DRIVER instead.       */
1722   /*                                                                       */
1723   /*    ft_open_params   :: Deprecated; use @FT_OPEN_PARAMS instead.       */
1724   /*                                                                       */
1725   /* <Note>                                                                */
1726   /*    The `FT_OPEN_MEMORY', `FT_OPEN_STREAM', and `FT_OPEN_PATHNAME'     */
1727   /*    flags are mutually exclusive.                                      */
1728   /*                                                                       */
1729 #define FT_OPEN_MEMORY    0x1
1730 #define FT_OPEN_STREAM    0x2
1731 #define FT_OPEN_PATHNAME  0x4
1732 #define FT_OPEN_DRIVER    0x8
1733 #define FT_OPEN_PARAMS    0x10
1734 
1735 #define ft_open_memory    FT_OPEN_MEMORY     /* deprecated */
1736 #define ft_open_stream    FT_OPEN_STREAM     /* deprecated */
1737 #define ft_open_pathname  FT_OPEN_PATHNAME   /* deprecated */
1738 #define ft_open_driver    FT_OPEN_DRIVER     /* deprecated */
1739 #define ft_open_params    FT_OPEN_PARAMS     /* deprecated */
1740 
1741 
1742   /*************************************************************************/
1743   /*                                                                       */
1744   /* <Struct>                                                              */
1745   /*    FT_Parameter                                                       */
1746   /*                                                                       */
1747   /* <Description>                                                         */
1748   /*    A simple structure used to pass more or less generic parameters to */
1749   /*    @FT_Open_Face.                                                     */
1750   /*                                                                       */
1751   /* <Fields>                                                              */
1752   /*    tag  :: A four-byte identification tag.                            */
1753   /*                                                                       */
1754   /*    data :: A pointer to the parameter data.                           */
1755   /*                                                                       */
1756   /* <Note>                                                                */
1757   /*    The ID and function of parameters are driver-specific.  See the    */
1758   /*    various FT_PARAM_TAG_XXX flags for more information.               */
1759   /*                                                                       */
1760   typedef struct  FT_Parameter_
1761   {
1762     FT_ULong    tag;
1763     FT_Pointer  data;
1764 
1765   } FT_Parameter;
1766 
1767 
1768   /*************************************************************************/
1769   /*                                                                       */
1770   /* <Struct>                                                              */
1771   /*    FT_Open_Args                                                       */
1772   /*                                                                       */
1773   /* <Description>                                                         */
1774   /*    A structure used to indicate how to open a new font file or        */
1775   /*    stream.  A pointer to such a structure can be used as a parameter  */
1776   /*    for the functions @FT_Open_Face and @FT_Attach_Stream.             */
1777   /*                                                                       */
1778   /* <Fields>                                                              */
1779   /*    flags       :: A set of bit flags indicating how to use the        */
1780   /*                   structure.                                          */
1781   /*                                                                       */
1782   /*    memory_base :: The first byte of the file in memory.               */
1783   /*                                                                       */
1784   /*    memory_size :: The size in bytes of the file in memory.            */
1785   /*                                                                       */
1786   /*    pathname    :: A pointer to an 8-bit file pathname.                */
1787   /*                                                                       */
1788   /*    stream      :: A handle to a source stream object.                 */
1789   /*                                                                       */
1790   /*    driver      :: This field is exclusively used by @FT_Open_Face;    */
1791   /*                   it simply specifies the font driver to use to open  */
1792   /*                   the face.  If set to~0, FreeType tries to load the  */
1793   /*                   face with each one of the drivers in its list.      */
1794   /*                                                                       */
1795   /*    num_params  :: The number of extra parameters.                     */
1796   /*                                                                       */
1797   /*    params      :: Extra parameters passed to the font driver when     */
1798   /*                   opening a new face.                                 */
1799   /*                                                                       */
1800   /* <Note>                                                                */
1801   /*    The stream type is determined by the contents of `flags' which     */
1802   /*    are tested in the following order by @FT_Open_Face:                */
1803   /*                                                                       */
1804   /*    If the `FT_OPEN_MEMORY' bit is set, assume that this is a          */
1805   /*    memory file of `memory_size' bytes, located at `memory_address'.   */
1806   /*    The data are are not copied, and the client is responsible for     */
1807   /*    releasing and destroying them _after_ the corresponding call to    */
1808   /*    @FT_Done_Face.                                                     */
1809   /*                                                                       */
1810   /*    Otherwise, if the `FT_OPEN_STREAM' bit is set, assume that a       */
1811   /*    custom input stream `stream' is used.                              */
1812   /*                                                                       */
1813   /*    Otherwise, if the `FT_OPEN_PATHNAME' bit is set, assume that this  */
1814   /*    is a normal file and use `pathname' to open it.                    */
1815   /*                                                                       */
1816   /*    If the `FT_OPEN_DRIVER' bit is set, @FT_Open_Face only tries to    */
1817   /*    open the file with the driver whose handler is in `driver'.        */
1818   /*                                                                       */
1819   /*    If the `FT_OPEN_PARAMS' bit is set, the parameters given by        */
1820   /*    `num_params' and `params' is used.  They are ignored otherwise.    */
1821   /*                                                                       */
1822   /*    Ideally, both the `pathname' and `params' fields should be tagged  */
1823   /*    as `const'; this is missing for API backwards compatibility.  In   */
1824   /*    other words, applications should treat them as read-only.          */
1825   /*                                                                       */
1826   typedef struct  FT_Open_Args_
1827   {
1828     FT_UInt         flags;
1829     const FT_Byte*  memory_base;
1830     FT_Long         memory_size;
1831     FT_String*      pathname;
1832     FT_Stream       stream;
1833     FT_Module       driver;
1834     FT_Int          num_params;
1835     FT_Parameter*   params;
1836 
1837   } FT_Open_Args;
1838 
1839 
1840   /*************************************************************************/
1841   /*                                                                       */
1842   /* <Function>                                                            */
1843   /*    FT_New_Face                                                        */
1844   /*                                                                       */
1845   /* <Description>                                                         */
1846   /*    This function calls @FT_Open_Face to open a font by its pathname.  */
1847   /*                                                                       */
1848   /* <InOut>                                                               */
1849   /*    library    :: A handle to the library resource.                    */
1850   /*                                                                       */
1851   /* <Input>                                                               */
1852   /*    pathname   :: A path to the font file.                             */
1853   /*                                                                       */
1854   /*    face_index :: The index of the face within the font.  The first    */
1855   /*                  face has index~0.                                    */
1856   /*                                                                       */
1857   /* <Output>                                                              */
1858   /*    aface      :: A handle to a new face object.  If `face_index' is   */
1859   /*                  greater than or equal to zero, it must be non-NULL.  */
1860   /*                  See @FT_Open_Face for more details.                  */
1861   /*                                                                       */
1862   /* <Return>                                                              */
1863   /*    FreeType error code.  0~means success.                             */
1864   /*                                                                       */
1865   FT_EXPORT( FT_Error )
1866   FT_New_Face( FT_Library   library,
1867                const char*  filepathname,
1868                FT_Long      face_index,
1869                FT_Face     *aface );
1870 
1871 
1872   /*************************************************************************/
1873   /*                                                                       */
1874   /* <Function>                                                            */
1875   /*    FT_New_Memory_Face                                                 */
1876   /*                                                                       */
1877   /* <Description>                                                         */
1878   /*    This function calls @FT_Open_Face to open a font which has been    */
1879   /*    loaded into memory.                                                */
1880   /*                                                                       */
1881   /* <InOut>                                                               */
1882   /*    library    :: A handle to the library resource.                    */
1883   /*                                                                       */
1884   /* <Input>                                                               */
1885   /*    file_base  :: A pointer to the beginning of the font data.         */
1886   /*                                                                       */
1887   /*    file_size  :: The size of the memory chunk used by the font data.  */
1888   /*                                                                       */
1889   /*    face_index :: The index of the face within the font.  The first    */
1890   /*                  face has index~0.                                    */
1891   /*                                                                       */
1892   /* <Output>                                                              */
1893   /*    aface      :: A handle to a new face object.  If `face_index' is   */
1894   /*                  greater than or equal to zero, it must be non-NULL.  */
1895   /*                  See @FT_Open_Face for more details.                  */
1896   /*                                                                       */
1897   /* <Return>                                                              */
1898   /*    FreeType error code.  0~means success.                             */
1899   /*                                                                       */
1900   /* <Note>                                                                */
1901   /*    You must not deallocate the memory before calling @FT_Done_Face.   */
1902   /*                                                                       */
1903   FT_EXPORT( FT_Error )
1904   FT_New_Memory_Face( FT_Library      library,
1905                       const FT_Byte*  file_base,
1906                       FT_Long         file_size,
1907                       FT_Long         face_index,
1908                       FT_Face        *aface );
1909 
1910 
1911   /*************************************************************************/
1912   /*                                                                       */
1913   /* <Function>                                                            */
1914   /*    FT_Open_Face                                                       */
1915   /*                                                                       */
1916   /* <Description>                                                         */
1917   /*    Create a face object from a given resource described by            */
1918   /*    @FT_Open_Args.                                                     */
1919   /*                                                                       */
1920   /* <InOut>                                                               */
1921   /*    library    :: A handle to the library resource.                    */
1922   /*                                                                       */
1923   /* <Input>                                                               */
1924   /*    args       :: A pointer to an `FT_Open_Args' structure which must  */
1925   /*                  be filled by the caller.                             */
1926   /*                                                                       */
1927   /*    face_index :: The index of the face within the font.  The first    */
1928   /*                  face has index~0.                                    */
1929   /*                                                                       */
1930   /* <Output>                                                              */
1931   /*    aface      :: A handle to a new face object.  If `face_index' is   */
1932   /*                  greater than or equal to zero, it must be non-NULL.  */
1933   /*                  See note below.                                      */
1934   /*                                                                       */
1935   /* <Return>                                                              */
1936   /*    FreeType error code.  0~means success.                             */
1937   /*                                                                       */
1938   /* <Note>                                                                */
1939   /*    Unlike FreeType 1.x, this function automatically creates a glyph   */
1940   /*    slot for the face object which can be accessed directly through    */
1941   /*    `face->glyph'.                                                     */
1942   /*                                                                       */
1943   /*    FT_Open_Face can be used to quickly check whether the font         */
1944   /*    format of a given font resource is supported by FreeType.  If the  */
1945   /*    `face_index' field is negative, the function's return value is~0   */
1946   /*    if the font format is recognized, or non-zero otherwise;           */
1947   /*    the function returns a more or less empty face handle in `*aface'  */
1948   /*    (if `aface' isn't NULL).  The only useful field in this special    */
1949   /*    case is `face->num_faces' which gives the number of faces within   */
1950   /*    the font file.  After examination, the returned @FT_Face structure */
1951   /*    should be deallocated with a call to @FT_Done_Face.                */
1952   /*                                                                       */
1953   /*    Each new face object created with this function also owns a        */
1954   /*    default @FT_Size object, accessible as `face->size'.               */
1955   /*                                                                       */
1956   /*    See the discussion of reference counters in the description of     */
1957   /*    @FT_Reference_Face.                                                */
1958   /*                                                                       */
1959   FT_EXPORT( FT_Error )
1960   FT_Open_Face( FT_Library           library,
1961                 const FT_Open_Args*  args,
1962                 FT_Long              face_index,
1963                 FT_Face             *aface );
1964 
1965 
1966   /*************************************************************************/
1967   /*                                                                       */
1968   /* <Function>                                                            */
1969   /*    FT_Attach_File                                                     */
1970   /*                                                                       */
1971   /* <Description>                                                         */
1972   /*    This function calls @FT_Attach_Stream to attach a file.            */
1973   /*                                                                       */
1974   /* <InOut>                                                               */
1975   /*    face         :: The target face object.                            */
1976   /*                                                                       */
1977   /* <Input>                                                               */
1978   /*    filepathname :: The pathname.                                      */
1979   /*                                                                       */
1980   /* <Return>                                                              */
1981   /*    FreeType error code.  0~means success.                             */
1982   /*                                                                       */
1983   FT_EXPORT( FT_Error )
1984   FT_Attach_File( FT_Face      face,
1985                   const char*  filepathname );
1986 
1987 
1988   /*************************************************************************/
1989   /*                                                                       */
1990   /* <Function>                                                            */
1991   /*    FT_Attach_Stream                                                   */
1992   /*                                                                       */
1993   /* <Description>                                                         */
1994   /*    `Attach' data to a face object.  Normally, this is used to read    */
1995   /*    additional information for the face object.  For example, you can  */
1996   /*    attach an AFM file that comes with a Type~1 font to get the        */
1997   /*    kerning values and other metrics.                                  */
1998   /*                                                                       */
1999   /* <InOut>                                                               */
2000   /*    face       :: The target face object.                              */
2001   /*                                                                       */
2002   /* <Input>                                                               */
2003   /*    parameters :: A pointer to @FT_Open_Args which must be filled by   */
2004   /*                  the caller.                                          */
2005   /*                                                                       */
2006   /* <Return>                                                              */
2007   /*    FreeType error code.  0~means success.                             */
2008   /*                                                                       */
2009   /* <Note>                                                                */
2010   /*    The meaning of the `attach' (i.e., what really happens when the    */
2011   /*    new file is read) is not fixed by FreeType itself.  It really      */
2012   /*    depends on the font format (and thus the font driver).             */
2013   /*                                                                       */
2014   /*    Client applications are expected to know what they are doing       */
2015   /*    when invoking this function.  Most drivers simply do not implement */
2016   /*    file attachments.                                                  */
2017   /*                                                                       */
2018   FT_EXPORT( FT_Error )
2019   FT_Attach_Stream( FT_Face        face,
2020                     FT_Open_Args*  parameters );
2021 
2022 
2023   /*************************************************************************/
2024   /*                                                                       */
2025   /* <Function>                                                            */
2026   /*    FT_Reference_Face                                                  */
2027   /*                                                                       */
2028   /* <Description>                                                         */
2029   /*    A counter gets initialized to~1 at the time an @FT_Face structure  */
2030   /*    is created.  This function increments the counter.  @FT_Done_Face  */
2031   /*    then only destroys a face if the counter is~1, otherwise it simply */
2032   /*    decrements the counter.                                            */
2033   /*                                                                       */
2034   /*    This function helps in managing life-cycles of structures which    */
2035   /*    reference @FT_Face objects.                                        */
2036   /*                                                                       */
2037   /* <Input>                                                               */
2038   /*    face :: A handle to a target face object.                          */
2039   /*                                                                       */
2040   /* <Return>                                                              */
2041   /*    FreeType error code.  0~means success.                             */
2042   /*                                                                       */
2043   /* <Since>                                                               */
2044   /*    2.4.2                                                              */
2045   /*                                                                       */
2046   FT_EXPORT( FT_Error )
2047   FT_Reference_Face( FT_Face  face );
2048 
2049 
2050   /*************************************************************************/
2051   /*                                                                       */
2052   /* <Function>                                                            */
2053   /*    FT_Done_Face                                                       */
2054   /*                                                                       */
2055   /* <Description>                                                         */
2056   /*    Discard a given face object, as well as all of its child slots and */
2057   /*    sizes.                                                             */
2058   /*                                                                       */
2059   /* <Input>                                                               */
2060   /*    face :: A handle to a target face object.                          */
2061   /*                                                                       */
2062   /* <Return>                                                              */
2063   /*    FreeType error code.  0~means success.                             */
2064   /*                                                                       */
2065   /* <Note>                                                                */
2066   /*    See the discussion of reference counters in the description of     */
2067   /*    @FT_Reference_Face.                                                */
2068   /*                                                                       */
2069   FT_EXPORT( FT_Error )
2070   FT_Done_Face( FT_Face  face );
2071 
2072 
2073   /*************************************************************************/
2074   /*                                                                       */
2075   /* <Function>                                                            */
2076   /*    FT_Select_Size                                                     */
2077   /*                                                                       */
2078   /* <Description>                                                         */
2079   /*    Select a bitmap strike.                                            */
2080   /*                                                                       */
2081   /* <InOut>                                                               */
2082   /*    face         :: A handle to a target face object.                  */
2083   /*                                                                       */
2084   /* <Input>                                                               */
2085   /*    strike_index :: The index of the bitmap strike in the              */
2086   /*                    `available_sizes' field of @FT_FaceRec structure.  */
2087   /*                                                                       */
2088   /* <Return>                                                              */
2089   /*    FreeType error code.  0~means success.                             */
2090   /*                                                                       */
2091   FT_EXPORT( FT_Error )
2092   FT_Select_Size( FT_Face  face,
2093                   FT_Int   strike_index );
2094 
2095 
2096   /*************************************************************************/
2097   /*                                                                       */
2098   /* <Enum>                                                                */
2099   /*    FT_Size_Request_Type                                               */
2100   /*                                                                       */
2101   /* <Description>                                                         */
2102   /*    An enumeration type that lists the supported size request types.   */
2103   /*                                                                       */
2104   /* <Values>                                                              */
2105   /*    FT_SIZE_REQUEST_TYPE_NOMINAL ::                                    */
2106   /*      The nominal size.  The `units_per_EM' field of @FT_FaceRec is    */
2107   /*      used to determine both scaling values.                           */
2108   /*                                                                       */
2109   /*    FT_SIZE_REQUEST_TYPE_REAL_DIM ::                                   */
2110   /*      The real dimension.  The sum of the the `ascender' and (minus    */
2111   /*      of) the `descender' fields of @FT_FaceRec are used to determine  */
2112   /*      both scaling values.                                             */
2113   /*                                                                       */
2114   /*    FT_SIZE_REQUEST_TYPE_BBOX ::                                       */
2115   /*      The font bounding box.  The width and height of the `bbox' field */
2116   /*      of @FT_FaceRec are used to determine the horizontal and vertical */
2117   /*      scaling value, respectively.                                     */
2118   /*                                                                       */
2119   /*    FT_SIZE_REQUEST_TYPE_CELL ::                                       */
2120   /*      The `max_advance_width' field of @FT_FaceRec is used to          */
2121   /*      determine the horizontal scaling value; the vertical scaling     */
2122   /*      value is determined the same way as                              */
2123   /*      @FT_SIZE_REQUEST_TYPE_REAL_DIM does.  Finally, both scaling      */
2124   /*      values are set to the smaller one.  This type is useful if you   */
2125   /*      want to specify the font size for, say, a window of a given      */
2126   /*      dimension and 80x24 cells.                                       */
2127   /*                                                                       */
2128   /*    FT_SIZE_REQUEST_TYPE_SCALES ::                                     */
2129   /*      Specify the scaling values directly.                             */
2130   /*                                                                       */
2131   /* <Note>                                                                */
2132   /*    The above descriptions only apply to scalable formats.  For bitmap */
2133   /*    formats, the behaviour is up to the driver.                        */
2134   /*                                                                       */
2135   /*    See the note section of @FT_Size_Metrics if you wonder how size    */
2136   /*    requesting relates to scaling values.                              */
2137   /*                                                                       */
2138   typedef enum  FT_Size_Request_Type_
2139   {
2140     FT_SIZE_REQUEST_TYPE_NOMINAL,
2141     FT_SIZE_REQUEST_TYPE_REAL_DIM,
2142     FT_SIZE_REQUEST_TYPE_BBOX,
2143     FT_SIZE_REQUEST_TYPE_CELL,
2144     FT_SIZE_REQUEST_TYPE_SCALES,
2145 
2146     FT_SIZE_REQUEST_TYPE_MAX
2147 
2148   } FT_Size_Request_Type;
2149 
2150 
2151   /*************************************************************************/
2152   /*                                                                       */
2153   /* <Struct>                                                              */
2154   /*    FT_Size_RequestRec                                                 */
2155   /*                                                                       */
2156   /* <Description>                                                         */
2157   /*    A structure used to model a size request.                          */
2158   /*                                                                       */
2159   /* <Fields>                                                              */
2160   /*    type           :: See @FT_Size_Request_Type.                       */
2161   /*                                                                       */
2162   /*    width          :: The desired width.                               */
2163   /*                                                                       */
2164   /*    height         :: The desired height.                              */
2165   /*                                                                       */
2166   /*    horiResolution :: The horizontal resolution.  If set to zero,      */
2167   /*                      `width' is treated as a 26.6 fractional pixel    */
2168   /*                      value.                                           */
2169   /*                                                                       */
2170   /*    vertResolution :: The vertical resolution.  If set to zero,        */
2171   /*                      `height' is treated as a 26.6 fractional pixel   */
2172   /*                      value.                                           */
2173   /*                                                                       */
2174   /* <Note>                                                                */
2175   /*    If `width' is zero, then the horizontal scaling value is set equal */
2176   /*    to the vertical scaling value, and vice versa.                     */
2177   /*                                                                       */
2178   typedef struct  FT_Size_RequestRec_
2179   {
2180     FT_Size_Request_Type  type;
2181     FT_Long               width;
2182     FT_Long               height;
2183     FT_UInt               horiResolution;
2184     FT_UInt               vertResolution;
2185 
2186   } FT_Size_RequestRec;
2187 
2188 
2189   /*************************************************************************/
2190   /*                                                                       */
2191   /* <Struct>                                                              */
2192   /*    FT_Size_Request                                                    */
2193   /*                                                                       */
2194   /* <Description>                                                         */
2195   /*    A handle to a size request structure.                              */
2196   /*                                                                       */
2197   typedef struct FT_Size_RequestRec_  *FT_Size_Request;
2198 
2199 
2200   /*************************************************************************/
2201   /*                                                                       */
2202   /* <Function>                                                            */
2203   /*    FT_Request_Size                                                    */
2204   /*                                                                       */
2205   /* <Description>                                                         */
2206   /*    Resize the scale of the active @FT_Size object in a face.          */
2207   /*                                                                       */
2208   /* <InOut>                                                               */
2209   /*    face :: A handle to a target face object.                          */
2210   /*                                                                       */
2211   /* <Input>                                                               */
2212   /*    req  :: A pointer to a @FT_Size_RequestRec.                        */
2213   /*                                                                       */
2214   /* <Return>                                                              */
2215   /*    FreeType error code.  0~means success.                             */
2216   /*                                                                       */
2217   /* <Note>                                                                */
2218   /*    Although drivers may select the bitmap strike matching the         */
2219   /*    request, you should not rely on this if you intend to select a     */
2220   /*    particular bitmap strike.  Use @FT_Select_Size instead in that     */
2221   /*    case.                                                              */
2222   /*                                                                       */
2223   FT_EXPORT( FT_Error )
2224   FT_Request_Size( FT_Face          face,
2225                    FT_Size_Request  req );
2226 
2227 
2228   /*************************************************************************/
2229   /*                                                                       */
2230   /* <Function>                                                            */
2231   /*    FT_Set_Char_Size                                                   */
2232   /*                                                                       */
2233   /* <Description>                                                         */
2234   /*    This function calls @FT_Request_Size to request the nominal size   */
2235   /*    (in points).                                                       */
2236   /*                                                                       */
2237   /* <InOut>                                                               */
2238   /*    face            :: A handle to a target face object.               */
2239   /*                                                                       */
2240   /* <Input>                                                               */
2241   /*    char_width      :: The nominal width, in 26.6 fractional points.   */
2242   /*                                                                       */
2243   /*    char_height     :: The nominal height, in 26.6 fractional points.  */
2244   /*                                                                       */
2245   /*    horz_resolution :: The horizontal resolution in dpi.               */
2246   /*                                                                       */
2247   /*    vert_resolution :: The vertical resolution in dpi.                 */
2248   /*                                                                       */
2249   /* <Return>                                                              */
2250   /*    FreeType error code.  0~means success.                             */
2251   /*                                                                       */
2252   /* <Note>                                                                */
2253   /*    If either the character width or height is zero, it is set equal   */
2254   /*    to the other value.                                                */
2255   /*                                                                       */
2256   /*    If either the horizontal or vertical resolution is zero, it is set */
2257   /*    equal to the other value.                                          */
2258   /*                                                                       */
2259   /*    A character width or height smaller than 1pt is set to 1pt; if     */
2260   /*    both resolution values are zero, they are set to 72dpi.            */
2261   /*                                                                       */
2262   /*    Don't use this function if you are using the FreeType cache API.   */
2263   /*                                                                       */
2264   FT_EXPORT( FT_Error )
2265   FT_Set_Char_Size( FT_Face     face,
2266                     FT_F26Dot6  char_width,
2267                     FT_F26Dot6  char_height,
2268                     FT_UInt     horz_resolution,
2269                     FT_UInt     vert_resolution );
2270 
2271 
2272   /*************************************************************************/
2273   /*                                                                       */
2274   /* <Function>                                                            */
2275   /*    FT_Set_Pixel_Sizes                                                 */
2276   /*                                                                       */
2277   /* <Description>                                                         */
2278   /*    This function calls @FT_Request_Size to request the nominal size   */
2279   /*    (in pixels).                                                       */
2280   /*                                                                       */
2281   /* <InOut>                                                               */
2282   /*    face         :: A handle to the target face object.                */
2283   /*                                                                       */
2284   /* <Input>                                                               */
2285   /*    pixel_width  :: The nominal width, in pixels.                      */
2286   /*                                                                       */
2287   /*    pixel_height :: The nominal height, in pixels.                     */
2288   /*                                                                       */
2289   /* <Return>                                                              */
2290   /*    FreeType error code.  0~means success.                             */
2291   /*                                                                       */
2292   FT_EXPORT( FT_Error )
2293   FT_Set_Pixel_Sizes( FT_Face  face,
2294                       FT_UInt  pixel_width,
2295                       FT_UInt  pixel_height );
2296 
2297 
2298   /*************************************************************************/
2299   /*                                                                       */
2300   /* <Function>                                                            */
2301   /*    FT_Load_Glyph                                                      */
2302   /*                                                                       */
2303   /* <Description>                                                         */
2304   /*    A function used to load a single glyph into the glyph slot of a    */
2305   /*    face object.                                                       */
2306   /*                                                                       */
2307   /* <InOut>                                                               */
2308   /*    face        :: A handle to the target face object where the glyph  */
2309   /*                   is loaded.                                          */
2310   /*                                                                       */
2311   /* <Input>                                                               */
2312   /*    glyph_index :: The index of the glyph in the font file.  For       */
2313   /*                   CID-keyed fonts (either in PS or in CFF format)     */
2314   /*                   this argument specifies the CID value.              */
2315   /*                                                                       */
2316   /*    load_flags  :: A flag indicating what to load for this glyph.  The */
2317   /*                   @FT_LOAD_XXX constants can be used to control the   */
2318   /*                   glyph loading process (e.g., whether the outline    */
2319   /*                   should be scaled, whether to load bitmaps or not,   */
2320   /*                   whether to hint the outline, etc).                  */
2321   /*                                                                       */
2322   /* <Return>                                                              */
2323   /*    FreeType error code.  0~means success.                             */
2324   /*                                                                       */
2325   /* <Note>                                                                */
2326   /*    The loaded glyph may be transformed.  See @FT_Set_Transform for    */
2327   /*    the details.                                                       */
2328   /*                                                                       */
2329   /*    For subsetted CID-keyed fonts, `FT_Err_Invalid_Argument' is        */
2330   /*    returned for invalid CID values (this is, for CID values which     */
2331   /*    don't have a corresponding glyph in the font).  See the discussion */
2332   /*    of the @FT_FACE_FLAG_CID_KEYED flag for more details.              */
2333   /*                                                                       */
2334   FT_EXPORT( FT_Error )
2335   FT_Load_Glyph( FT_Face   face,
2336                  FT_UInt   glyph_index,
2337                  FT_Int32  load_flags );
2338 
2339 
2340   /*************************************************************************/
2341   /*                                                                       */
2342   /* <Function>                                                            */
2343   /*    FT_Load_Char                                                       */
2344   /*                                                                       */
2345   /* <Description>                                                         */
2346   /*    A function used to load a single glyph into the glyph slot of a    */
2347   /*    face object, according to its character code.                      */
2348   /*                                                                       */
2349   /* <InOut>                                                               */
2350   /*    face        :: A handle to a target face object where the glyph    */
2351   /*                   is loaded.                                          */
2352   /*                                                                       */
2353   /* <Input>                                                               */
2354   /*    char_code   :: The glyph's character code, according to the        */
2355   /*                   current charmap used in the face.                   */
2356   /*                                                                       */
2357   /*    load_flags  :: A flag indicating what to load for this glyph.  The */
2358   /*                   @FT_LOAD_XXX constants can be used to control the   */
2359   /*                   glyph loading process (e.g., whether the outline    */
2360   /*                   should be scaled, whether to load bitmaps or not,   */
2361   /*                   whether to hint the outline, etc).                  */
2362   /*                                                                       */
2363   /* <Return>                                                              */
2364   /*    FreeType error code.  0~means success.                             */
2365   /*                                                                       */
2366   /* <Note>                                                                */
2367   /*    This function simply calls @FT_Get_Char_Index and @FT_Load_Glyph.  */
2368   /*                                                                       */
2369   FT_EXPORT( FT_Error )
2370   FT_Load_Char( FT_Face   face,
2371                 FT_ULong  char_code,
2372                 FT_Int32  load_flags );
2373 
2374 
2375   /*************************************************************************
2376    *
2377    * @enum:
2378    *   FT_LOAD_XXX
2379    *
2380    * @description:
2381    *   A list of bit-field constants used with @FT_Load_Glyph to indicate
2382    *   what kind of operations to perform during glyph loading.
2383    *
2384    * @values:
2385    *   FT_LOAD_DEFAULT ::
2386    *     Corresponding to~0, this value is used as the default glyph load
2387    *     operation.  In this case, the following happens:
2388    *
2389    *     1. FreeType looks for a bitmap for the glyph corresponding to the
2390    *        face's current size.  If one is found, the function returns.
2391    *        The bitmap data can be accessed from the glyph slot (see note
2392    *        below).
2393    *
2394    *     2. If no embedded bitmap is searched or found, FreeType looks for a
2395    *        scalable outline.  If one is found, it is loaded from the font
2396    *        file, scaled to device pixels, then `hinted' to the pixel grid
2397    *        in order to optimize it.  The outline data can be accessed from
2398    *        the glyph slot (see note below).
2399    *
2400    *     Note that by default, the glyph loader doesn't render outlines into
2401    *     bitmaps.  The following flags are used to modify this default
2402    *     behaviour to more specific and useful cases.
2403    *
2404    *   FT_LOAD_NO_SCALE ::
2405    *     Don't scale the outline glyph loaded, but keep it in font units.
2406    *
2407    *     This flag implies @FT_LOAD_NO_HINTING and @FT_LOAD_NO_BITMAP, and
2408    *     unsets @FT_LOAD_RENDER.
2409    *
2410    *   FT_LOAD_NO_HINTING ::
2411    *     Disable hinting.  This generally generates `blurrier' bitmap glyph
2412    *     when the glyph is rendered in any of the anti-aliased modes.  See
2413    *     also the note below.
2414    *
2415    *     This flag is implied by @FT_LOAD_NO_SCALE.
2416    *
2417    *   FT_LOAD_RENDER ::
2418    *     Call @FT_Render_Glyph after the glyph is loaded.  By default, the
2419    *     glyph is rendered in @FT_RENDER_MODE_NORMAL mode.  This can be
2420    *     overridden by @FT_LOAD_TARGET_XXX or @FT_LOAD_MONOCHROME.
2421    *
2422    *     This flag is unset by @FT_LOAD_NO_SCALE.
2423    *
2424    *   FT_LOAD_NO_BITMAP ::
2425    *     Ignore bitmap strikes when loading.  Bitmap-only fonts ignore this
2426    *     flag.
2427    *
2428    *     @FT_LOAD_NO_SCALE always sets this flag.
2429    *
2430    *   FT_LOAD_VERTICAL_LAYOUT ::
2431    *     Load the glyph for vertical text layout.  _Don't_ use it as it is
2432    *     problematic currently.
2433    *
2434    *   FT_LOAD_FORCE_AUTOHINT ::
2435    *     Indicates that the auto-hinter is preferred over the font's native
2436    *     hinter.  See also the note below.
2437    *
2438    *   FT_LOAD_CROP_BITMAP ::
2439    *     Indicates that the font driver should crop the loaded bitmap glyph
2440    *     (i.e., remove all space around its black bits).  Not all drivers
2441    *     implement this.
2442    *
2443    *   FT_LOAD_PEDANTIC ::
2444    *     Indicates that the font driver should perform pedantic verifications
2445    *     during glyph loading.  This is mostly used to detect broken glyphs
2446    *     in fonts.  By default, FreeType tries to handle broken fonts also.
2447    *
2448    *   FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH ::
2449    *     Ignored.  Deprecated.
2450    *
2451    *   FT_LOAD_NO_RECURSE ::
2452    *     This flag is only used internally.  It merely indicates that the
2453    *     font driver should not load composite glyphs recursively.  Instead,
2454    *     it should set the `num_subglyph' and `subglyphs' values of the
2455    *     glyph slot accordingly, and set `glyph->format' to
2456    *     @FT_GLYPH_FORMAT_COMPOSITE.
2457    *
2458    *     The description of sub-glyphs is not available to client
2459    *     applications for now.
2460    *
2461    *     This flag implies @FT_LOAD_NO_SCALE and @FT_LOAD_IGNORE_TRANSFORM.
2462    *
2463    *   FT_LOAD_IGNORE_TRANSFORM ::
2464    *     Indicates that the transform matrix set by @FT_Set_Transform should
2465    *     be ignored.
2466    *
2467    *   FT_LOAD_MONOCHROME ::
2468    *     This flag is used with @FT_LOAD_RENDER to indicate that you want to
2469    *     render an outline glyph to a 1-bit monochrome bitmap glyph, with
2470    *     8~pixels packed into each byte of the bitmap data.
2471    *
2472    *     Note that this has no effect on the hinting algorithm used.  You
2473    *     should rather use @FT_LOAD_TARGET_MONO so that the
2474    *     monochrome-optimized hinting algorithm is used.
2475    *
2476    *   FT_LOAD_LINEAR_DESIGN ::
2477    *     Indicates that the `linearHoriAdvance' and `linearVertAdvance'
2478    *     fields of @FT_GlyphSlotRec should be kept in font units.  See
2479    *     @FT_GlyphSlotRec for details.
2480    *
2481    *   FT_LOAD_NO_AUTOHINT ::
2482    *     Disable auto-hinter.  See also the note below.
2483    *
2484    * @note:
2485    *   By default, hinting is enabled and the font's native hinter (see
2486    *   @FT_FACE_FLAG_HINTER) is preferred over the auto-hinter.  You can
2487    *   disable hinting by setting @FT_LOAD_NO_HINTING or change the
2488    *   precedence by setting @FT_LOAD_FORCE_AUTOHINT.  You can also set
2489    *   @FT_LOAD_NO_AUTOHINT in case you don't want the auto-hinter to be
2490    *   used at all.
2491    *
2492    *   See the description of @FT_FACE_FLAG_TRICKY for a special exception
2493    *   (affecting only a handful of Asian fonts).
2494    *
2495    *   Besides deciding which hinter to use, you can also decide which
2496    *   hinting algorithm to use.  See @FT_LOAD_TARGET_XXX for details.
2497    *
2498    */
2499 #define FT_LOAD_DEFAULT                      0x0
2500 #define FT_LOAD_NO_SCALE                     0x1
2501 #define FT_LOAD_NO_HINTING                   0x2
2502 #define FT_LOAD_RENDER                       0x4
2503 #define FT_LOAD_NO_BITMAP                    0x8
2504 #define FT_LOAD_VERTICAL_LAYOUT              0x10
2505 #define FT_LOAD_FORCE_AUTOHINT               0x20
2506 #define FT_LOAD_CROP_BITMAP                  0x40
2507 #define FT_LOAD_PEDANTIC                     0x80
2508 #define FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH  0x200
2509 #define FT_LOAD_NO_RECURSE                   0x400
2510 #define FT_LOAD_IGNORE_TRANSFORM             0x800
2511 #define FT_LOAD_MONOCHROME                   0x1000
2512 #define FT_LOAD_LINEAR_DESIGN                0x2000
2513 #define FT_LOAD_NO_AUTOHINT                  0x8000U
2514 
2515   /* */
2516 
2517   /* used internally only by certain font drivers! */
2518 #define FT_LOAD_ADVANCE_ONLY                 0x100
2519 #define FT_LOAD_SBITS_ONLY                   0x4000
2520 
2521 
2522   /**************************************************************************
2523    *
2524    * @enum:
2525    *   FT_LOAD_TARGET_XXX
2526    *
2527    * @description:
2528    *   A list of values that are used to select a specific hinting algorithm
2529    *   to use by the hinter.  You should OR one of these values to your
2530    *   `load_flags' when calling @FT_Load_Glyph.
2531    *
2532    *   Note that font's native hinters may ignore the hinting algorithm you
2533    *   have specified (e.g., the TrueType bytecode interpreter).  You can set
2534    *   @FT_LOAD_FORCE_AUTOHINT to ensure that the auto-hinter is used.
2535    *
2536    *   Also note that @FT_LOAD_TARGET_LIGHT is an exception, in that it
2537    *   always implies @FT_LOAD_FORCE_AUTOHINT.
2538    *
2539    * @values:
2540    *   FT_LOAD_TARGET_NORMAL ::
2541    *     This corresponds to the default hinting algorithm, optimized for
2542    *     standard gray-level rendering.  For monochrome output, use
2543    *     @FT_LOAD_TARGET_MONO instead.
2544    *
2545    *   FT_LOAD_TARGET_LIGHT ::
2546    *     A lighter hinting algorithm for non-monochrome modes.  Many
2547    *     generated glyphs are more fuzzy but better resemble its original
2548    *     shape.  A bit like rendering on Mac OS~X.
2549    *
2550    *     As a special exception, this target implies @FT_LOAD_FORCE_AUTOHINT.
2551    *
2552    *   FT_LOAD_TARGET_MONO ::
2553    *     Strong hinting algorithm that should only be used for monochrome
2554    *     output.  The result is probably unpleasant if the glyph is rendered
2555    *     in non-monochrome modes.
2556    *
2557    *   FT_LOAD_TARGET_LCD ::
2558    *     A variant of @FT_LOAD_TARGET_NORMAL optimized for horizontally
2559    *     decimated LCD displays.
2560    *
2561    *   FT_LOAD_TARGET_LCD_V ::
2562    *     A variant of @FT_LOAD_TARGET_NORMAL optimized for vertically
2563    *     decimated LCD displays.
2564    *
2565    * @note:
2566    *   You should use only _one_ of the FT_LOAD_TARGET_XXX values in your
2567    *   `load_flags'.  They can't be ORed.
2568    *
2569    *   If @FT_LOAD_RENDER is also set, the glyph is rendered in the
2570    *   corresponding mode (i.e., the mode which matches the used algorithm
2571    *   best) unless @FT_LOAD_MONOCHROME is set.
2572    *
2573    *   You can use a hinting algorithm that doesn't correspond to the same
2574    *   rendering mode.  As an example, it is possible to use the `light'
2575    *   hinting algorithm and have the results rendered in horizontal LCD
2576    *   pixel mode, with code like
2577    *
2578    *     {
2579    *       FT_Load_Glyph( face, glyph_index,
2580    *                      load_flags | FT_LOAD_TARGET_LIGHT );
2581    *
2582    *       FT_Render_Glyph( face->glyph, FT_RENDER_MODE_LCD );
2583    *     }
2584    *
2585    */
2586 #define FT_LOAD_TARGET_( x )   ( (FT_Int32)( (x) & 15 ) << 16 )
2587 
2588 #define FT_LOAD_TARGET_NORMAL  FT_LOAD_TARGET_( FT_RENDER_MODE_NORMAL )
2589 #define FT_LOAD_TARGET_LIGHT   FT_LOAD_TARGET_( FT_RENDER_MODE_LIGHT  )
2590 #define FT_LOAD_TARGET_MONO    FT_LOAD_TARGET_( FT_RENDER_MODE_MONO   )
2591 #define FT_LOAD_TARGET_LCD     FT_LOAD_TARGET_( FT_RENDER_MODE_LCD    )
2592 #define FT_LOAD_TARGET_LCD_V   FT_LOAD_TARGET_( FT_RENDER_MODE_LCD_V  )
2593 
2594 
2595   /**************************************************************************
2596    *
2597    * @macro:
2598    *   FT_LOAD_TARGET_MODE
2599    *
2600    * @description:
2601    *   Return the @FT_Render_Mode corresponding to a given
2602    *   @FT_LOAD_TARGET_XXX value.
2603    *
2604    */
2605 #define FT_LOAD_TARGET_MODE( x )  ( (FT_Render_Mode)( ( (x) >> 16 ) & 15 ) )
2606 
2607 
2608   /*************************************************************************/
2609   /*                                                                       */
2610   /* <Function>                                                            */
2611   /*    FT_Set_Transform                                                   */
2612   /*                                                                       */
2613   /* <Description>                                                         */
2614   /*    A function used to set the transformation that is applied to glyph */
2615   /*    images when they are loaded into a glyph slot through              */
2616   /*    @FT_Load_Glyph.                                                    */
2617   /*                                                                       */
2618   /* <InOut>                                                               */
2619   /*    face   :: A handle to the source face object.                      */
2620   /*                                                                       */
2621   /* <Input>                                                               */
2622   /*    matrix :: A pointer to the transformation's 2x2 matrix.  Use~0 for */
2623   /*              the identity matrix.                                     */
2624   /*    delta  :: A pointer to the translation vector.  Use~0 for the null */
2625   /*              vector.                                                  */
2626   /*                                                                       */
2627   /* <Note>                                                                */
2628   /*    The transformation is only applied to scalable image formats after */
2629   /*    the glyph has been loaded.  It means that hinting is unaltered by  */
2630   /*    the transformation and is performed on the character size given in */
2631   /*    the last call to @FT_Set_Char_Size or @FT_Set_Pixel_Sizes.         */
2632   /*                                                                       */
2633   /*    Note that this also transforms the `face.glyph.advance' field, but */
2634   /*    *not* the values in `face.glyph.metrics'.                          */
2635   /*                                                                       */
2636   FT_EXPORT( void )
2637   FT_Set_Transform( FT_Face     face,
2638                     FT_Matrix*  matrix,
2639                     FT_Vector*  delta );
2640 
2641 
2642   /*************************************************************************/
2643   /*                                                                       */
2644   /* <Enum>                                                                */
2645   /*    FT_Render_Mode                                                     */
2646   /*                                                                       */
2647   /* <Description>                                                         */
2648   /*    An enumeration type that lists the render modes supported by       */
2649   /*    FreeType~2.  Each mode corresponds to a specific type of scanline  */
2650   /*    conversion performed on the outline.                               */
2651   /*                                                                       */
2652   /*    For bitmap fonts and embedded bitmaps the `bitmap->pixel_mode'     */
2653   /*    field in the @FT_GlyphSlotRec structure gives the format of the    */
2654   /*    returned bitmap.                                                   */
2655   /*                                                                       */
2656   /*    All modes except @FT_RENDER_MODE_MONO use 256 levels of opacity.   */
2657   /*                                                                       */
2658   /* <Values>                                                              */
2659   /*    FT_RENDER_MODE_NORMAL ::                                           */
2660   /*      This is the default render mode; it corresponds to 8-bit         */
2661   /*      anti-aliased bitmaps.                                            */
2662   /*                                                                       */
2663   /*    FT_RENDER_MODE_LIGHT ::                                            */
2664   /*      This is equivalent to @FT_RENDER_MODE_NORMAL.  It is only        */
2665   /*      defined as a separate value because render modes are also used   */
2666   /*      indirectly to define hinting algorithm selectors.  See           */
2667   /*      @FT_LOAD_TARGET_XXX for details.                                 */
2668   /*                                                                       */
2669   /*    FT_RENDER_MODE_MONO ::                                             */
2670   /*      This mode corresponds to 1-bit bitmaps (with 2~levels of         */
2671   /*      opacity).                                                        */
2672   /*                                                                       */
2673   /*    FT_RENDER_MODE_LCD ::                                              */
2674   /*      This mode corresponds to horizontal RGB and BGR sub-pixel        */
2675   /*      displays like LCD screens.  It produces 8-bit bitmaps that are   */
2676   /*      3~times the width of the original glyph outline in pixels, and   */
2677   /*      which use the @FT_PIXEL_MODE_LCD mode.                           */
2678   /*                                                                       */
2679   /*    FT_RENDER_MODE_LCD_V ::                                            */
2680   /*      This mode corresponds to vertical RGB and BGR sub-pixel displays */
2681   /*      (like PDA screens, rotated LCD displays, etc.).  It produces     */
2682   /*      8-bit bitmaps that are 3~times the height of the original        */
2683   /*      glyph outline in pixels and use the @FT_PIXEL_MODE_LCD_V mode.   */
2684   /*                                                                       */
2685   /* <Note>                                                                */
2686   /*    The LCD-optimized glyph bitmaps produced by FT_Render_Glyph can be */
2687   /*    filtered to reduce color-fringes by using @FT_Library_SetLcdFilter */
2688   /*    (not active in the default builds).  It is up to the caller to     */
2689   /*    either call @FT_Library_SetLcdFilter (if available) or do the      */
2690   /*    filtering itself.                                                  */
2691   /*                                                                       */
2692   /*    The selected render mode only affects vector glyphs of a font.     */
2693   /*    Embedded bitmaps often have a different pixel mode like            */
2694   /*    @FT_PIXEL_MODE_MONO.  You can use @FT_Bitmap_Convert to transform  */
2695   /*    them into 8-bit pixmaps.                                           */
2696   /*                                                                       */
2697   typedef enum  FT_Render_Mode_
2698   {
2699     FT_RENDER_MODE_NORMAL = 0,
2700     FT_RENDER_MODE_LIGHT,
2701     FT_RENDER_MODE_MONO,
2702     FT_RENDER_MODE_LCD,
2703     FT_RENDER_MODE_LCD_V,
2704 
2705     FT_RENDER_MODE_MAX
2706 
2707   } FT_Render_Mode;
2708 
2709 
2710   /*************************************************************************/
2711   /*                                                                       */
2712   /* <Enum>                                                                */
2713   /*    ft_render_mode_xxx                                                 */
2714   /*                                                                       */
2715   /* <Description>                                                         */
2716   /*    These constants are deprecated.  Use the corresponding             */
2717   /*    @FT_Render_Mode values instead.                                    */
2718   /*                                                                       */
2719   /* <Values>                                                              */
2720   /*    ft_render_mode_normal :: see @FT_RENDER_MODE_NORMAL                */
2721   /*    ft_render_mode_mono   :: see @FT_RENDER_MODE_MONO                  */
2722   /*                                                                       */
2723 #define ft_render_mode_normal  FT_RENDER_MODE_NORMAL
2724 #define ft_render_mode_mono    FT_RENDER_MODE_MONO
2725 
2726 
2727   /*************************************************************************/
2728   /*                                                                       */
2729   /* <Function>                                                            */
2730   /*    FT_Render_Glyph                                                    */
2731   /*                                                                       */
2732   /* <Description>                                                         */
2733   /*    Convert a given glyph image to a bitmap.  It does so by inspecting */
2734   /*    the glyph image format, finding the relevant renderer, and         */
2735   /*    invoking it.                                                       */
2736   /*                                                                       */
2737   /* <InOut>                                                               */
2738   /*    slot        :: A handle to the glyph slot containing the image to  */
2739   /*                   convert.                                            */
2740   /*                                                                       */
2741   /* <Input>                                                               */
2742   /*    render_mode :: This is the render mode used to render the glyph    */
2743   /*                   image into a bitmap.  See @FT_Render_Mode for a     */
2744   /*                   list of possible values.                            */
2745   /*                                                                       */
2746   /* <Return>                                                              */
2747   /*    FreeType error code.  0~means success.                             */
2748   /*                                                                       */
2749   FT_EXPORT( FT_Error )
2750   FT_Render_Glyph( FT_GlyphSlot    slot,
2751                    FT_Render_Mode  render_mode );
2752 
2753 
2754   /*************************************************************************/
2755   /*                                                                       */
2756   /* <Enum>                                                                */
2757   /*    FT_Kerning_Mode                                                    */
2758   /*                                                                       */
2759   /* <Description>                                                         */
2760   /*    An enumeration used to specify which kerning values to return in   */
2761   /*    @FT_Get_Kerning.                                                   */
2762   /*                                                                       */
2763   /* <Values>                                                              */
2764   /*    FT_KERNING_DEFAULT  :: Return scaled and grid-fitted kerning       */
2765   /*                           distances (value is~0).                     */
2766   /*                                                                       */
2767   /*    FT_KERNING_UNFITTED :: Return scaled but un-grid-fitted kerning    */
2768   /*                           distances.                                  */
2769   /*                                                                       */
2770   /*    FT_KERNING_UNSCALED :: Return the kerning vector in original font  */
2771   /*                           units.                                      */
2772   /*                                                                       */
2773   typedef enum  FT_Kerning_Mode_
2774   {
2775     FT_KERNING_DEFAULT  = 0,
2776     FT_KERNING_UNFITTED,
2777     FT_KERNING_UNSCALED
2778 
2779   } FT_Kerning_Mode;
2780 
2781 
2782   /*************************************************************************/
2783   /*                                                                       */
2784   /* <Const>                                                               */
2785   /*    ft_kerning_default                                                 */
2786   /*                                                                       */
2787   /* <Description>                                                         */
2788   /*    This constant is deprecated.  Please use @FT_KERNING_DEFAULT       */
2789   /*    instead.                                                           */
2790   /*                                                                       */
2791 #define ft_kerning_default   FT_KERNING_DEFAULT
2792 
2793 
2794   /*************************************************************************/
2795   /*                                                                       */
2796   /* <Const>                                                               */
2797   /*    ft_kerning_unfitted                                                */
2798   /*                                                                       */
2799   /* <Description>                                                         */
2800   /*    This constant is deprecated.  Please use @FT_KERNING_UNFITTED      */
2801   /*    instead.                                                           */
2802   /*                                                                       */
2803 #define ft_kerning_unfitted  FT_KERNING_UNFITTED
2804 
2805 
2806   /*************************************************************************/
2807   /*                                                                       */
2808   /* <Const>                                                               */
2809   /*    ft_kerning_unscaled                                                */
2810   /*                                                                       */
2811   /* <Description>                                                         */
2812   /*    This constant is deprecated.  Please use @FT_KERNING_UNSCALED      */
2813   /*    instead.                                                           */
2814   /*                                                                       */
2815 #define ft_kerning_unscaled  FT_KERNING_UNSCALED
2816 
2817 
2818   /*************************************************************************/
2819   /*                                                                       */
2820   /* <Function>                                                            */
2821   /*    FT_Get_Kerning                                                     */
2822   /*                                                                       */
2823   /* <Description>                                                         */
2824   /*    Return the kerning vector between two glyphs of a same face.       */
2825   /*                                                                       */
2826   /* <Input>                                                               */
2827   /*    face        :: A handle to a source face object.                   */
2828   /*                                                                       */
2829   /*    left_glyph  :: The index of the left glyph in the kern pair.       */
2830   /*                                                                       */
2831   /*    right_glyph :: The index of the right glyph in the kern pair.      */
2832   /*                                                                       */
2833   /*    kern_mode   :: See @FT_Kerning_Mode for more information.          */
2834   /*                   Determines the scale and dimension of the returned  */
2835   /*                   kerning vector.                                     */
2836   /*                                                                       */
2837   /* <Output>                                                              */
2838   /*    akerning    :: The kerning vector.  This is either in font units   */
2839   /*                   or in pixels (26.6 format) for scalable formats,    */
2840   /*                   and in pixels for fixed-sizes formats.              */
2841   /*                                                                       */
2842   /* <Return>                                                              */
2843   /*    FreeType error code.  0~means success.                             */
2844   /*                                                                       */
2845   /* <Note>                                                                */
2846   /*    Only horizontal layouts (left-to-right & right-to-left) are        */
2847   /*    supported by this method.  Other layouts, or more sophisticated    */
2848   /*    kernings, are out of the scope of this API function -- they can be */
2849   /*    implemented through format-specific interfaces.                    */
2850   /*                                                                       */
2851   FT_EXPORT( FT_Error )
2852   FT_Get_Kerning( FT_Face     face,
2853                   FT_UInt     left_glyph,
2854                   FT_UInt     right_glyph,
2855                   FT_UInt     kern_mode,
2856                   FT_Vector  *akerning );
2857 
2858 
2859   /*************************************************************************/
2860   /*                                                                       */
2861   /* <Function>                                                            */
2862   /*    FT_Get_Track_Kerning                                               */
2863   /*                                                                       */
2864   /* <Description>                                                         */
2865   /*    Return the track kerning for a given face object at a given size.  */
2866   /*                                                                       */
2867   /* <Input>                                                               */
2868   /*    face       :: A handle to a source face object.                    */
2869   /*                                                                       */
2870   /*    point_size :: The point size in 16.16 fractional points.           */
2871   /*                                                                       */
2872   /*    degree     :: The degree of tightness.                             */
2873   /*                                                                       */
2874   /* <Output>                                                              */
2875   /*    akerning   :: The kerning in 16.16 fractional points.              */
2876   /*                                                                       */
2877   /* <Return>                                                              */
2878   /*    FreeType error code.  0~means success.                             */
2879   /*                                                                       */
2880   FT_EXPORT( FT_Error )
2881   FT_Get_Track_Kerning( FT_Face    face,
2882                         FT_Fixed   point_size,
2883                         FT_Int     degree,
2884                         FT_Fixed*  akerning );
2885 
2886 
2887   /*************************************************************************/
2888   /*                                                                       */
2889   /* <Function>                                                            */
2890   /*    FT_Get_Glyph_Name                                                  */
2891   /*                                                                       */
2892   /* <Description>                                                         */
2893   /*    Retrieve the ASCII name of a given glyph in a face.  This only     */
2894   /*    works for those faces where @FT_HAS_GLYPH_NAMES(face) returns~1.   */
2895   /*                                                                       */
2896   /* <Input>                                                               */
2897   /*    face        :: A handle to a source face object.                   */
2898   /*                                                                       */
2899   /*    glyph_index :: The glyph index.                                    */
2900   /*                                                                       */
2901   /*    buffer_max  :: The maximal number of bytes available in the        */
2902   /*                   buffer.                                             */
2903   /*                                                                       */
2904   /* <Output>                                                              */
2905   /*    buffer      :: A pointer to a target buffer where the name is      */
2906   /*                   copied to.                                          */
2907   /*                                                                       */
2908   /* <Return>                                                              */
2909   /*    FreeType error code.  0~means success.                             */
2910   /*                                                                       */
2911   /* <Note>                                                                */
2912   /*    An error is returned if the face doesn't provide glyph names or if */
2913   /*    the glyph index is invalid.  In all cases of failure, the first    */
2914   /*    byte of `buffer' is set to~0 to indicate an empty name.            */
2915   /*                                                                       */
2916   /*    The glyph name is truncated to fit within the buffer if it is too  */
2917   /*    long.  The returned string is always zero-terminated.              */
2918   /*                                                                       */
2919   /*    Be aware that FreeType reorders glyph indices internally so that   */
2920   /*    glyph index~0 always corresponds to the `missing glyph' (called    */
2921   /*    `.notdef').                                                        */
2922   /*                                                                       */
2923   /*    This function is not compiled within the library if the config     */
2924   /*    macro `FT_CONFIG_OPTION_NO_GLYPH_NAMES' is defined in              */
2925   /*    `include/freetype/config/ftoptions.h'.                             */
2926   /*                                                                       */
2927   FT_EXPORT( FT_Error )
2928   FT_Get_Glyph_Name( FT_Face     face,
2929                      FT_UInt     glyph_index,
2930                      FT_Pointer  buffer,
2931                      FT_UInt     buffer_max );
2932 
2933 
2934   /*************************************************************************/
2935   /*                                                                       */
2936   /* <Function>                                                            */
2937   /*    FT_Get_Postscript_Name                                             */
2938   /*                                                                       */
2939   /* <Description>                                                         */
2940   /*    Retrieve the ASCII PostScript name of a given face, if available.  */
2941   /*    This only works with PostScript and TrueType fonts.                */
2942   /*                                                                       */
2943   /* <Input>                                                               */
2944   /*    face :: A handle to the source face object.                        */
2945   /*                                                                       */
2946   /* <Return>                                                              */
2947   /*    A pointer to the face's PostScript name.  NULL if unavailable.     */
2948   /*                                                                       */
2949   /* <Note>                                                                */
2950   /*    The returned pointer is owned by the face and is destroyed with    */
2951   /*    it.                                                                */
2952   /*                                                                       */
2953   FT_EXPORT( const char* )
2954   FT_Get_Postscript_Name( FT_Face  face );
2955 
2956 
2957   /*************************************************************************/
2958   /*                                                                       */
2959   /* <Function>                                                            */
2960   /*    FT_Select_Charmap                                                  */
2961   /*                                                                       */
2962   /* <Description>                                                         */
2963   /*    Select a given charmap by its encoding tag (as listed in           */
2964   /*    `freetype.h').                                                     */
2965   /*                                                                       */
2966   /* <InOut>                                                               */
2967   /*    face     :: A handle to the source face object.                    */
2968   /*                                                                       */
2969   /* <Input>                                                               */
2970   /*    encoding :: A handle to the selected encoding.                     */
2971   /*                                                                       */
2972   /* <Return>                                                              */
2973   /*    FreeType error code.  0~means success.                             */
2974   /*                                                                       */
2975   /* <Note>                                                                */
2976   /*    This function returns an error if no charmap in the face           */
2977   /*    corresponds to the encoding queried here.                          */
2978   /*                                                                       */
2979   /*    Because many fonts contain more than a single cmap for Unicode     */
2980   /*    encoding, this function has some special code to select the one    */
2981   /*    which covers Unicode best (`best' in the sense that a UCS-4 cmap   */
2982   /*    is preferred to a UCS-2 cmap).  It is thus preferable to           */
2983   /*    @FT_Set_Charmap in this case.                                      */
2984   /*                                                                       */
2985   FT_EXPORT( FT_Error )
2986   FT_Select_Charmap( FT_Face      face,
2987                      FT_Encoding  encoding );
2988 
2989 
2990   /*************************************************************************/
2991   /*                                                                       */
2992   /* <Function>                                                            */
2993   /*    FT_Set_Charmap                                                     */
2994   /*                                                                       */
2995   /* <Description>                                                         */
2996   /*    Select a given charmap for character code to glyph index mapping.  */
2997   /*                                                                       */
2998   /* <InOut>                                                               */
2999   /*    face    :: A handle to the source face object.                     */
3000   /*                                                                       */
3001   /* <Input>                                                               */
3002   /*    charmap :: A handle to the selected charmap.                       */
3003   /*                                                                       */
3004   /* <Return>                                                              */
3005   /*    FreeType error code.  0~means success.                             */
3006   /*                                                                       */
3007   /* <Note>                                                                */
3008   /*    This function returns an error if the charmap is not part of       */
3009   /*    the face (i.e., if it is not listed in the `face->charmaps'        */
3010   /*    table).                                                            */
3011   /*                                                                       */
3012   /*    It also fails if a type~14 charmap is selected.                    */
3013   /*                                                                       */
3014   FT_EXPORT( FT_Error )
3015   FT_Set_Charmap( FT_Face     face,
3016                   FT_CharMap  charmap );
3017 
3018 
3019   /*************************************************************************
3020    *
3021    * @function:
3022    *   FT_Get_Charmap_Index
3023    *
3024    * @description:
3025    *   Retrieve index of a given charmap.
3026    *
3027    * @input:
3028    *   charmap ::
3029    *     A handle to a charmap.
3030    *
3031    * @return:
3032    *   The index into the array of character maps within the face to which
3033    *   `charmap' belongs.  If an error occurs, -1 is returned.
3034    *
3035    */
3036   FT_EXPORT( FT_Int )
3037   FT_Get_Charmap_Index( FT_CharMap  charmap );
3038 
3039 
3040   /*************************************************************************/
3041   /*                                                                       */
3042   /* <Function>                                                            */
3043   /*    FT_Get_Char_Index                                                  */
3044   /*                                                                       */
3045   /* <Description>                                                         */
3046   /*    Return the glyph index of a given character code.  This function   */
3047   /*    uses a charmap object to do the mapping.                           */
3048   /*                                                                       */
3049   /* <Input>                                                               */
3050   /*    face     :: A handle to the source face object.                    */
3051   /*                                                                       */
3052   /*    charcode :: The character code.                                    */
3053   /*                                                                       */
3054   /* <Return>                                                              */
3055   /*    The glyph index.  0~means `undefined character code'.              */
3056   /*                                                                       */
3057   /* <Note>                                                                */
3058   /*    If you use FreeType to manipulate the contents of font files       */
3059   /*    directly, be aware that the glyph index returned by this function  */
3060   /*    doesn't always correspond to the internal indices used within      */
3061   /*    the file.  This is done to ensure that value~0 always corresponds  */
3062   /*    to the `missing glyph'.                                            */
3063   /*                                                                       */
3064   FT_EXPORT( FT_UInt )
3065   FT_Get_Char_Index( FT_Face   face,
3066                      FT_ULong  charcode );
3067 
3068 
3069   /*************************************************************************/
3070   /*                                                                       */
3071   /* <Function>                                                            */
3072   /*    FT_Get_First_Char                                                  */
3073   /*                                                                       */
3074   /* <Description>                                                         */
3075   /*    This function is used to return the first character code in the    */
3076   /*    current charmap of a given face.  It also returns the              */
3077   /*    corresponding glyph index.                                         */
3078   /*                                                                       */
3079   /* <Input>                                                               */
3080   /*    face    :: A handle to the source face object.                     */
3081   /*                                                                       */
3082   /* <Output>                                                              */
3083   /*    agindex :: Glyph index of first character code.  0~if charmap is   */
3084   /*               empty.                                                  */
3085   /*                                                                       */
3086   /* <Return>                                                              */
3087   /*    The charmap's first character code.                                */
3088   /*                                                                       */
3089   /* <Note>                                                                */
3090   /*    You should use this function with @FT_Get_Next_Char to be able to  */
3091   /*    parse all character codes available in a given charmap.  The code  */
3092   /*    should look like this:                                             */
3093   /*                                                                       */
3094   /*    {                                                                  */
3095   /*      FT_ULong  charcode;                                              */
3096   /*      FT_UInt   gindex;                                                */
3097   /*                                                                       */
3098   /*                                                                       */
3099   /*      charcode = FT_Get_First_Char( face, &gindex );                   */
3100   /*      while ( gindex != 0 )                                            */
3101   /*      {                                                                */
3102   /*        ... do something with (charcode,gindex) pair ...               */
3103   /*                                                                       */
3104   /*        charcode = FT_Get_Next_Char( face, charcode, &gindex );        */
3105   /*      }                                                                */
3106   /*    }                                                                  */
3107   /*                                                                       */
3108   /*    Note that `*agindex' is set to~0 if the charmap is empty.  The     */
3109   /*    result itself can be~0 in two cases: if the charmap is empty or    */
3110   /*    if the value~0 is the first valid character code.                  */
3111   /*                                                                       */
3112   FT_EXPORT( FT_ULong )
3113   FT_Get_First_Char( FT_Face   face,
3114                      FT_UInt  *agindex );
3115 
3116 
3117   /*************************************************************************/
3118   /*                                                                       */
3119   /* <Function>                                                            */
3120   /*    FT_Get_Next_Char                                                   */
3121   /*                                                                       */
3122   /* <Description>                                                         */
3123   /*    This function is used to return the next character code in the     */
3124   /*    current charmap of a given face following the value `char_code',   */
3125   /*    as well as the corresponding glyph index.                          */
3126   /*                                                                       */
3127   /* <Input>                                                               */
3128   /*    face      :: A handle to the source face object.                   */
3129   /*    char_code :: The starting character code.                          */
3130   /*                                                                       */
3131   /* <Output>                                                              */
3132   /*    agindex   :: Glyph index of next character code.  0~if charmap     */
3133   /*                 is empty.                                             */
3134   /*                                                                       */
3135   /* <Return>                                                              */
3136   /*    The charmap's next character code.                                 */
3137   /*                                                                       */
3138   /* <Note>                                                                */
3139   /*    You should use this function with @FT_Get_First_Char to walk       */
3140   /*    over all character codes available in a given charmap.  See the    */
3141   /*    note for this function for a simple code example.                  */
3142   /*                                                                       */
3143   /*    Note that `*agindex' is set to~0 when there are no more codes in   */
3144   /*    the charmap.                                                       */
3145   /*                                                                       */
3146   FT_EXPORT( FT_ULong )
3147   FT_Get_Next_Char( FT_Face    face,
3148                     FT_ULong   char_code,
3149                     FT_UInt   *agindex );
3150 
3151 
3152   /*************************************************************************/
3153   /*                                                                       */
3154   /* <Function>                                                            */
3155   /*    FT_Get_Name_Index                                                  */
3156   /*                                                                       */
3157   /* <Description>                                                         */
3158   /*    Return the glyph index of a given glyph name.  This function uses  */
3159   /*    driver specific objects to do the translation.                     */
3160   /*                                                                       */
3161   /* <Input>                                                               */
3162   /*    face       :: A handle to the source face object.                  */
3163   /*                                                                       */
3164   /*    glyph_name :: The glyph name.                                      */
3165   /*                                                                       */
3166   /* <Return>                                                              */
3167   /*    The glyph index.  0~means `undefined character code'.              */
3168   /*                                                                       */
3169   FT_EXPORT( FT_UInt )
3170   FT_Get_Name_Index( FT_Face     face,
3171                      FT_String*  glyph_name );
3172 
3173 
3174   /*************************************************************************
3175    *
3176    * @macro:
3177    *   FT_SUBGLYPH_FLAG_XXX
3178    *
3179    * @description:
3180    *   A list of constants used to describe subglyphs.  Please refer to the
3181    *   TrueType specification for the meaning of the various flags.
3182    *
3183    * @values:
3184    *   FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS ::
3185    *   FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES ::
3186    *   FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID ::
3187    *   FT_SUBGLYPH_FLAG_SCALE ::
3188    *   FT_SUBGLYPH_FLAG_XY_SCALE ::
3189    *   FT_SUBGLYPH_FLAG_2X2 ::
3190    *   FT_SUBGLYPH_FLAG_USE_MY_METRICS ::
3191    *
3192    */
3193 #define FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS          1
3194 #define FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES      2
3195 #define FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID        4
3196 #define FT_SUBGLYPH_FLAG_SCALE                   8
3197 #define FT_SUBGLYPH_FLAG_XY_SCALE             0x40
3198 #define FT_SUBGLYPH_FLAG_2X2                  0x80
3199 #define FT_SUBGLYPH_FLAG_USE_MY_METRICS      0x200
3200 
3201 
3202   /*************************************************************************
3203    *
3204    * @func:
3205    *   FT_Get_SubGlyph_Info
3206    *
3207    * @description:
3208    *   Retrieve a description of a given subglyph.  Only use it if
3209    *   `glyph->format' is @FT_GLYPH_FORMAT_COMPOSITE; an error is
3210    *   returned otherwise.
3211    *
3212    * @input:
3213    *   glyph ::
3214    *     The source glyph slot.
3215    *
3216    *   sub_index ::
3217    *     The index of the subglyph.  Must be less than
3218    *     `glyph->num_subglyphs'.
3219    *
3220    * @output:
3221    *   p_index ::
3222    *     The glyph index of the subglyph.
3223    *
3224    *   p_flags ::
3225    *     The subglyph flags, see @FT_SUBGLYPH_FLAG_XXX.
3226    *
3227    *   p_arg1 ::
3228    *     The subglyph's first argument (if any).
3229    *
3230    *   p_arg2 ::
3231    *     The subglyph's second argument (if any).
3232    *
3233    *   p_transform ::
3234    *     The subglyph transformation (if any).
3235    *
3236    * @return:
3237    *   FreeType error code.  0~means success.
3238    *
3239    * @note:
3240    *   The values of `*p_arg1', `*p_arg2', and `*p_transform' must be
3241    *   interpreted depending on the flags returned in `*p_flags'.  See the
3242    *   TrueType specification for details.
3243    *
3244    */
3245   FT_EXPORT( FT_Error )
3246   FT_Get_SubGlyph_Info( FT_GlyphSlot  glyph,
3247                         FT_UInt       sub_index,
3248                         FT_Int       *p_index,
3249                         FT_UInt      *p_flags,
3250                         FT_Int       *p_arg1,
3251                         FT_Int       *p_arg2,
3252                         FT_Matrix    *p_transform );
3253 
3254 
3255   /*************************************************************************/
3256   /*                                                                       */
3257   /* <Enum>                                                                */
3258   /*    FT_FSTYPE_XXX                                                      */
3259   /*                                                                       */
3260   /* <Description>                                                         */
3261   /*    A list of bit flags used in the `fsType' field of the OS/2 table   */
3262   /*    in a TrueType or OpenType font and the `FSType' entry in a         */
3263   /*    PostScript font.  These bit flags are returned by                  */
3264   /*    @FT_Get_FSType_Flags; they inform client applications of embedding */
3265   /*    and subsetting restrictions associated with a font.                */
3266   /*                                                                       */
3267   /*    See http://www.adobe.com/devnet/acrobat/pdfs/FontPolicies.pdf for  */
3268   /*    more details.                                                      */
3269   /*                                                                       */
3270   /* <Values>                                                              */
3271   /*    FT_FSTYPE_INSTALLABLE_EMBEDDING ::                                 */
3272   /*      Fonts with no fsType bit set may be embedded and permanently     */
3273   /*      installed on the remote system by an application.                */
3274   /*                                                                       */
3275   /*    FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING ::                          */
3276   /*      Fonts that have only this bit set must not be modified, embedded */
3277   /*      or exchanged in any manner without first obtaining permission of */
3278   /*      the font software copyright owner.                               */
3279   /*                                                                       */
3280   /*    FT_FSTYPE_PREVIEW_AND_PRINT_EMBEDDING ::                           */
3281   /*      If this bit is set, the font may be embedded and temporarily     */
3282   /*      loaded on the remote system.  Documents containing Preview &     */
3283   /*      Print fonts must be opened `read-only'; no edits can be applied  */
3284   /*      to the document.                                                 */
3285   /*                                                                       */
3286   /*    FT_FSTYPE_EDITABLE_EMBEDDING ::                                    */
3287   /*      If this bit is set, the font may be embedded but must only be    */
3288   /*      installed temporarily on other systems.  In contrast to Preview  */
3289   /*      & Print fonts, documents containing editable fonts may be opened */
3290   /*      for reading, editing is permitted, and changes may be saved.     */
3291   /*                                                                       */
3292   /*    FT_FSTYPE_NO_SUBSETTING ::                                         */
3293   /*      If this bit is set, the font may not be subsetted prior to       */
3294   /*      embedding.                                                       */
3295   /*                                                                       */
3296   /*    FT_FSTYPE_BITMAP_EMBEDDING_ONLY ::                                 */
3297   /*      If this bit is set, only bitmaps contained in the font may be    */
3298   /*      embedded; no outline data may be embedded.  If there are no      */
3299   /*      bitmaps available in the font, then the font is unembeddable.    */
3300   /*                                                                       */
3301   /* <Note>                                                                */
3302   /*    While the fsType flags can indicate that a font may be embedded, a */
3303   /*    license with the font vendor may be separately required to use the */
3304   /*    font in this way.                                                  */
3305   /*                                                                       */
3306 #define FT_FSTYPE_INSTALLABLE_EMBEDDING         0x0000
3307 #define FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING  0x0002
3308 #define FT_FSTYPE_PREVIEW_AND_PRINT_EMBEDDING   0x0004
3309 #define FT_FSTYPE_EDITABLE_EMBEDDING            0x0008
3310 #define FT_FSTYPE_NO_SUBSETTING                 0x0100
3311 #define FT_FSTYPE_BITMAP_EMBEDDING_ONLY         0x0200
3312 
3313 
3314   /*************************************************************************/
3315   /*                                                                       */
3316   /* <Function>                                                            */
3317   /*    FT_Get_FSType_Flags                                                */
3318   /*                                                                       */
3319   /* <Description>                                                         */
3320   /*    Return the fsType flags for a font.                                */
3321   /*                                                                       */
3322   /* <Input>                                                               */
3323   /*    face :: A handle to the source face object.                        */
3324   /*                                                                       */
3325   /* <Return>                                                              */
3326   /*    The fsType flags, @FT_FSTYPE_XXX.                                  */
3327   /*                                                                       */
3328   /* <Note>                                                                */
3329   /*    Use this function rather than directly reading the `fs_type' field */
3330   /*    in the @PS_FontInfoRec structure which is only guaranteed to       */
3331   /*    return the correct results for Type~1 fonts.                       */
3332   /*                                                                       */
3333   /* <Since>                                                               */
3334   /*    2.3.8                                                              */
3335   /*                                                                       */
3336   FT_EXPORT( FT_UShort )
3337   FT_Get_FSType_Flags( FT_Face  face );
3338 
3339 
3340   /*************************************************************************/
3341   /*                                                                       */
3342   /* <Section>                                                             */
3343   /*    glyph_variants                                                     */
3344   /*                                                                       */
3345   /* <Title>                                                               */
3346   /*    Glyph Variants                                                     */
3347   /*                                                                       */
3348   /* <Abstract>                                                            */
3349   /*    The FreeType~2 interface to Unicode Ideographic Variation          */
3350   /*    Sequences (IVS), using the SFNT cmap format~14.                    */
3351   /*                                                                       */
3352   /* <Description>                                                         */
3353   /*    Many CJK characters have variant forms.  They are a sort of grey   */
3354   /*    area somewhere between being totally irrelevant and semantically   */
3355   /*    distinct; for this reason, the Unicode consortium decided to       */
3356   /*    introduce Ideographic Variation Sequences (IVS), consisting of a   */
3357   /*    Unicode base character and one of 240 variant selectors            */
3358   /*    (U+E0100-U+E01EF), instead of further extending the already huge   */
3359   /*    code range for CJK characters.                                     */
3360   /*                                                                       */
3361   /*    An IVS is registered and unique; for further details please refer  */
3362   /*    to Unicode Technical Report #37, the Ideographic Variation         */
3363   /*    Database.  To date (October 2007), the character with the most     */
3364   /*    variants is U+908A, having 8~such IVS.                             */
3365   /*                                                                       */
3366   /*    Adobe and MS decided to support IVS with a new cmap subtable       */
3367   /*    (format~14).  It is an odd subtable because it is not a mapping of */
3368   /*    input code points to glyphs, but contains lists of all variants    */
3369   /*    supported by the font.                                             */
3370   /*                                                                       */
3371   /*    A variant may be either `default' or `non-default'.  A default     */
3372   /*    variant is the one you will get for that code point if you look it */
3373   /*    up in the standard Unicode cmap.  A non-default variant is a       */
3374   /*    different glyph.                                                   */
3375   /*                                                                       */
3376   /*************************************************************************/
3377 
3378 
3379   /*************************************************************************/
3380   /*                                                                       */
3381   /* <Function>                                                            */
3382   /*    FT_Face_GetCharVariantIndex                                        */
3383   /*                                                                       */
3384   /* <Description>                                                         */
3385   /*    Return the glyph index of a given character code as modified by    */
3386   /*    the variation selector.                                            */
3387   /*                                                                       */
3388   /* <Input>                                                               */
3389   /*    face ::                                                            */
3390   /*      A handle to the source face object.                              */
3391   /*                                                                       */
3392   /*    charcode ::                                                        */
3393   /*      The character code point in Unicode.                             */
3394   /*                                                                       */
3395   /*    variantSelector ::                                                 */
3396   /*      The Unicode code point of the variation selector.                */
3397   /*                                                                       */
3398   /* <Return>                                                              */
3399   /*    The glyph index.  0~means either `undefined character code', or    */
3400   /*    `undefined selector code', or `no variation selector cmap          */
3401   /*    subtable', or `current CharMap is not Unicode'.                    */
3402   /*                                                                       */
3403   /* <Note>                                                                */
3404   /*    If you use FreeType to manipulate the contents of font files       */
3405   /*    directly, be aware that the glyph index returned by this function  */
3406   /*    doesn't always correspond to the internal indices used within      */
3407   /*    the file.  This is done to ensure that value~0 always corresponds  */
3408   /*    to the `missing glyph'.                                            */
3409   /*                                                                       */
3410   /*    This function is only meaningful if                                */
3411   /*      a) the font has a variation selector cmap sub table,             */
3412   /*    and                                                                */
3413   /*      b) the current charmap has a Unicode encoding.                   */
3414   /*                                                                       */
3415   /* <Since>                                                               */
3416   /*    2.3.6                                                              */
3417   /*                                                                       */
3418   FT_EXPORT( FT_UInt )
3419   FT_Face_GetCharVariantIndex( FT_Face   face,
3420                                FT_ULong  charcode,
3421                                FT_ULong  variantSelector );
3422 
3423 
3424   /*************************************************************************/
3425   /*                                                                       */
3426   /* <Function>                                                            */
3427   /*    FT_Face_GetCharVariantIsDefault                                    */
3428   /*                                                                       */
3429   /* <Description>                                                         */
3430   /*    Check whether this variant of this Unicode character is the one to */
3431   /*    be found in the `cmap'.                                            */
3432   /*                                                                       */
3433   /* <Input>                                                               */
3434   /*    face ::                                                            */
3435   /*      A handle to the source face object.                              */
3436   /*                                                                       */
3437   /*    charcode ::                                                        */
3438   /*      The character codepoint in Unicode.                              */
3439   /*                                                                       */
3440   /*    variantSelector ::                                                 */
3441   /*      The Unicode codepoint of the variation selector.                 */
3442   /*                                                                       */
3443   /* <Return>                                                              */
3444   /*    1~if found in the standard (Unicode) cmap, 0~if found in the       */
3445   /*    variation selector cmap, or -1 if it is not a variant.             */
3446   /*                                                                       */
3447   /* <Note>                                                                */
3448   /*    This function is only meaningful if the font has a variation       */
3449   /*    selector cmap subtable.                                            */
3450   /*                                                                       */
3451   /* <Since>                                                               */
3452   /*    2.3.6                                                              */
3453   /*                                                                       */
3454   FT_EXPORT( FT_Int )
3455   FT_Face_GetCharVariantIsDefault( FT_Face   face,
3456                                    FT_ULong  charcode,
3457                                    FT_ULong  variantSelector );
3458 
3459 
3460   /*************************************************************************/
3461   /*                                                                       */
3462   /* <Function>                                                            */
3463   /*    FT_Face_GetVariantSelectors                                        */
3464   /*                                                                       */
3465   /* <Description>                                                         */
3466   /*    Return a zero-terminated list of Unicode variant selectors found   */
3467   /*    in the font.                                                       */
3468   /*                                                                       */
3469   /* <Input>                                                               */
3470   /*    face ::                                                            */
3471   /*      A handle to the source face object.                              */
3472   /*                                                                       */
3473   /* <Return>                                                              */
3474   /*    A pointer to an array of selector code points, or NULL if there is */
3475   /*    no valid variant selector cmap subtable.                           */
3476   /*                                                                       */
3477   /* <Note>                                                                */
3478   /*    The last item in the array is~0; the array is owned by the         */
3479   /*    @FT_Face object but can be overwritten or released on the next     */
3480   /*    call to a FreeType function.                                       */
3481   /*                                                                       */
3482   /* <Since>                                                               */
3483   /*    2.3.6                                                              */
3484   /*                                                                       */
3485   FT_EXPORT( FT_UInt32* )
3486   FT_Face_GetVariantSelectors( FT_Face  face );
3487 
3488 
3489   /*************************************************************************/
3490   /*                                                                       */
3491   /* <Function>                                                            */
3492   /*    FT_Face_GetVariantsOfChar                                          */
3493   /*                                                                       */
3494   /* <Description>                                                         */
3495   /*    Return a zero-terminated list of Unicode variant selectors found   */
3496   /*    for the specified character code.                                  */
3497   /*                                                                       */
3498   /* <Input>                                                               */
3499   /*    face ::                                                            */
3500   /*      A handle to the source face object.                              */
3501   /*                                                                       */
3502   /*    charcode ::                                                        */
3503   /*      The character codepoint in Unicode.                              */
3504   /*                                                                       */
3505   /* <Return>                                                              */
3506   /*    A pointer to an array of variant selector code points which are    */
3507   /*    active for the given character, or NULL if the corresponding list  */
3508   /*    is empty.                                                          */
3509   /*                                                                       */
3510   /* <Note>                                                                */
3511   /*    The last item in the array is~0; the array is owned by the         */
3512   /*    @FT_Face object but can be overwritten or released on the next     */
3513   /*    call to a FreeType function.                                       */
3514   /*                                                                       */
3515   /* <Since>                                                               */
3516   /*    2.3.6                                                              */
3517   /*                                                                       */
3518   FT_EXPORT( FT_UInt32* )
3519   FT_Face_GetVariantsOfChar( FT_Face   face,
3520                              FT_ULong  charcode );
3521 
3522 
3523   /*************************************************************************/
3524   /*                                                                       */
3525   /* <Function>                                                            */
3526   /*    FT_Face_GetCharsOfVariant                                          */
3527   /*                                                                       */
3528   /* <Description>                                                         */
3529   /*    Return a zero-terminated list of Unicode character codes found for */
3530   /*    the specified variant selector.                                    */
3531   /*                                                                       */
3532   /* <Input>                                                               */
3533   /*    face ::                                                            */
3534   /*      A handle to the source face object.                              */
3535   /*                                                                       */
3536   /*    variantSelector ::                                                 */
3537   /*      The variant selector code point in Unicode.                      */
3538   /*                                                                       */
3539   /* <Return>                                                              */
3540   /*    A list of all the code points which are specified by this selector */
3541   /*    (both default and non-default codes are returned) or NULL if there */
3542   /*    is no valid cmap or the variant selector is invalid.               */
3543   /*                                                                       */
3544   /* <Note>                                                                */
3545   /*    The last item in the array is~0; the array is owned by the         */
3546   /*    @FT_Face object but can be overwritten or released on the next     */
3547   /*    call to a FreeType function.                                       */
3548   /*                                                                       */
3549   /* <Since>                                                               */
3550   /*    2.3.6                                                              */
3551   /*                                                                       */
3552   FT_EXPORT( FT_UInt32* )
3553   FT_Face_GetCharsOfVariant( FT_Face   face,
3554                              FT_ULong  variantSelector );
3555 
3556 
3557   /*************************************************************************/
3558   /*                                                                       */
3559   /* <Section>                                                             */
3560   /*    computations                                                       */
3561   /*                                                                       */
3562   /* <Title>                                                               */
3563   /*    Computations                                                       */
3564   /*                                                                       */
3565   /* <Abstract>                                                            */
3566   /*    Crunching fixed numbers and vectors.                               */
3567   /*                                                                       */
3568   /* <Description>                                                         */
3569   /*    This section contains various functions used to perform            */
3570   /*    computations on 16.16 fixed-float numbers or 2d vectors.           */
3571   /*                                                                       */
3572   /* <Order>                                                               */
3573   /*    FT_MulDiv                                                          */
3574   /*    FT_MulFix                                                          */
3575   /*    FT_DivFix                                                          */
3576   /*    FT_RoundFix                                                        */
3577   /*    FT_CeilFix                                                         */
3578   /*    FT_FloorFix                                                        */
3579   /*    FT_Vector_Transform                                                */
3580   /*    FT_Matrix_Multiply                                                 */
3581   /*    FT_Matrix_Invert                                                   */
3582   /*                                                                       */
3583   /*************************************************************************/
3584 
3585 
3586   /*************************************************************************/
3587   /*                                                                       */
3588   /* <Function>                                                            */
3589   /*    FT_MulDiv                                                          */
3590   /*                                                                       */
3591   /* <Description>                                                         */
3592   /*    A very simple function used to perform the computation `(a*b)/c'   */
3593   /*    with maximal accuracy (it uses a 64-bit intermediate integer       */
3594   /*    whenever necessary).                                               */
3595   /*                                                                       */
3596   /*    This function isn't necessarily as fast as some processor specific */
3597   /*    operations, but is at least completely portable.                   */
3598   /*                                                                       */
3599   /* <Input>                                                               */
3600   /*    a :: The first multiplier.                                         */
3601   /*    b :: The second multiplier.                                        */
3602   /*    c :: The divisor.                                                  */
3603   /*                                                                       */
3604   /* <Return>                                                              */
3605   /*    The result of `(a*b)/c'.  This function never traps when trying to */
3606   /*    divide by zero; it simply returns `MaxInt' or `MinInt' depending   */
3607   /*    on the signs of `a' and `b'.                                       */
3608   /*                                                                       */
3609   FT_EXPORT( FT_Long )
3610   FT_MulDiv( FT_Long  a,
3611              FT_Long  b,
3612              FT_Long  c );
3613 
3614 
3615   /* */
3616 
3617   /* The following #if 0 ... #endif is for the documentation formatter, */
3618   /* hiding the internal `FT_MULFIX_INLINED' macro.                     */
3619 
3620 #if 0
3621   /*************************************************************************/
3622   /*                                                                       */
3623   /* <Function>                                                            */
3624   /*    FT_MulFix                                                          */
3625   /*                                                                       */
3626   /* <Description>                                                         */
3627   /*    A very simple function used to perform the computation             */
3628   /*    `(a*b)/0x10000' with maximal accuracy.  Most of the time this is   */
3629   /*    used to multiply a given value by a 16.16 fixed float factor.      */
3630   /*                                                                       */
3631   /* <Input>                                                               */
3632   /*    a :: The first multiplier.                                         */
3633   /*    b :: The second multiplier.  Use a 16.16 factor here whenever      */
3634   /*         possible (see note below).                                    */
3635   /*                                                                       */
3636   /* <Return>                                                              */
3637   /*    The result of `(a*b)/0x10000'.                                     */
3638   /*                                                                       */
3639   /* <Note>                                                                */
3640   /*    This function has been optimized for the case where the absolute   */
3641   /*    value of `a' is less than 2048, and `b' is a 16.16 scaling factor. */
3642   /*    As this happens mainly when scaling from notional units to         */
3643   /*    fractional pixels in FreeType, it resulted in noticeable speed     */
3644   /*    improvements between versions 2.x and 1.x.                         */
3645   /*                                                                       */
3646   /*    As a conclusion, always try to place a 16.16 factor as the         */
3647   /*    _second_ argument of this function; this can make a great          */
3648   /*    difference.                                                        */
3649   /*                                                                       */
3650   FT_EXPORT( FT_Long )
3651   FT_MulFix( FT_Long  a,
3652              FT_Long  b );
3653 
3654   /* */
3655 #endif
3656 
3657 #ifdef FT_MULFIX_INLINED
3658 #define FT_MulFix( a, b )  FT_MULFIX_INLINED( a, b )
3659 #else
3660   FT_EXPORT( FT_Long )
3661   FT_MulFix( FT_Long  a,
3662              FT_Long  b );
3663 #endif
3664 
3665 
3666   /*************************************************************************/
3667   /*                                                                       */
3668   /* <Function>                                                            */
3669   /*    FT_DivFix                                                          */
3670   /*                                                                       */
3671   /* <Description>                                                         */
3672   /*    A very simple function used to perform the computation             */
3673   /*    `(a*0x10000)/b' with maximal accuracy.  Most of the time, this is  */
3674   /*    used to divide a given value by a 16.16 fixed float factor.        */
3675   /*                                                                       */
3676   /* <Input>                                                               */
3677   /*    a :: The first multiplier.                                         */
3678   /*    b :: The second multiplier.  Use a 16.16 factor here whenever      */
3679   /*         possible (see note below).                                    */
3680   /*                                                                       */
3681   /* <Return>                                                              */
3682   /*    The result of `(a*0x10000)/b'.                                     */
3683   /*                                                                       */
3684   /* <Note>                                                                */
3685   /*    The optimization for FT_DivFix() is simple: If (a~<<~16) fits in   */
3686   /*    32~bits, then the division is computed directly.  Otherwise, we    */
3687   /*    use a specialized version of @FT_MulDiv.                           */
3688   /*                                                                       */
3689   FT_EXPORT( FT_Long )
3690   FT_DivFix( FT_Long  a,
3691              FT_Long  b );
3692 
3693 
3694   /*************************************************************************/
3695   /*                                                                       */
3696   /* <Function>                                                            */
3697   /*    FT_RoundFix                                                        */
3698   /*                                                                       */
3699   /* <Description>                                                         */
3700   /*    A very simple function used to round a 16.16 fixed number.         */
3701   /*                                                                       */
3702   /* <Input>                                                               */
3703   /*    a :: The number to be rounded.                                     */
3704   /*                                                                       */
3705   /* <Return>                                                              */
3706   /*    The result of `(a + 0x8000) & -0x10000'.                           */
3707   /*                                                                       */
3708   FT_EXPORT( FT_Fixed )
3709   FT_RoundFix( FT_Fixed  a );
3710 
3711 
3712   /*************************************************************************/
3713   /*                                                                       */
3714   /* <Function>                                                            */
3715   /*    FT_CeilFix                                                         */
3716   /*                                                                       */
3717   /* <Description>                                                         */
3718   /*    A very simple function used to compute the ceiling function of a   */
3719   /*    16.16 fixed number.                                                */
3720   /*                                                                       */
3721   /* <Input>                                                               */
3722   /*    a :: The number for which the ceiling function is to be computed.  */
3723   /*                                                                       */
3724   /* <Return>                                                              */
3725   /*    The result of `(a + 0x10000 - 1) & -0x10000'.                      */
3726   /*                                                                       */
3727   FT_EXPORT( FT_Fixed )
3728   FT_CeilFix( FT_Fixed  a );
3729 
3730 
3731   /*************************************************************************/
3732   /*                                                                       */
3733   /* <Function>                                                            */
3734   /*    FT_FloorFix                                                        */
3735   /*                                                                       */
3736   /* <Description>                                                         */
3737   /*    A very simple function used to compute the floor function of a     */
3738   /*    16.16 fixed number.                                                */
3739   /*                                                                       */
3740   /* <Input>                                                               */
3741   /*    a :: The number for which the floor function is to be computed.    */
3742   /*                                                                       */
3743   /* <Return>                                                              */
3744   /*    The result of `a & -0x10000'.                                      */
3745   /*                                                                       */
3746   FT_EXPORT( FT_Fixed )
3747   FT_FloorFix( FT_Fixed  a );
3748 
3749 
3750   /*************************************************************************/
3751   /*                                                                       */
3752   /* <Function>                                                            */
3753   /*    FT_Vector_Transform                                                */
3754   /*                                                                       */
3755   /* <Description>                                                         */
3756   /*    Transform a single vector through a 2x2 matrix.                    */
3757   /*                                                                       */
3758   /* <InOut>                                                               */
3759   /*    vector :: The target vector to transform.                          */
3760   /*                                                                       */
3761   /* <Input>                                                               */
3762   /*    matrix :: A pointer to the source 2x2 matrix.                      */
3763   /*                                                                       */
3764   /* <Note>                                                                */
3765   /*    The result is undefined if either `vector' or `matrix' is invalid. */
3766   /*                                                                       */
3767   FT_EXPORT( void )
3768   FT_Vector_Transform( FT_Vector*        vec,
3769                        const FT_Matrix*  matrix );
3770 
3771 
3772   /*************************************************************************/
3773   /*                                                                       */
3774   /* <Section>                                                             */
3775   /*    version                                                            */
3776   /*                                                                       */
3777   /* <Title>                                                               */
3778   /*    FreeType Version                                                   */
3779   /*                                                                       */
3780   /* <Abstract>                                                            */
3781   /*    Functions and macros related to FreeType versions.                 */
3782   /*                                                                       */
3783   /* <Description>                                                         */
3784   /*    Note that those functions and macros are of limited use because    */
3785   /*    even a new release of FreeType with only documentation changes     */
3786   /*    increases the version number.                                      */
3787   /*                                                                       */
3788   /*************************************************************************/
3789 
3790 
3791   /*************************************************************************
3792    *
3793    * @enum:
3794    *   FREETYPE_XXX
3795    *
3796    * @description:
3797    *   These three macros identify the FreeType source code version.
3798    *   Use @FT_Library_Version to access them at runtime.
3799    *
3800    * @values:
3801    *   FREETYPE_MAJOR :: The major version number.
3802    *   FREETYPE_MINOR :: The minor version number.
3803    *   FREETYPE_PATCH :: The patch level.
3804    *
3805    * @note:
3806    *   The version number of FreeType if built as a dynamic link library
3807    *   with the `libtool' package is _not_ controlled by these three
3808    *   macros.
3809    *
3810    */
3811 #define FREETYPE_MAJOR  2
3812 #define FREETYPE_MINOR  4
3813 #define FREETYPE_PATCH  8
3814 
3815 
3816   /*************************************************************************/
3817   /*                                                                       */
3818   /* <Function>                                                            */
3819   /*    FT_Library_Version                                                 */
3820   /*                                                                       */
3821   /* <Description>                                                         */
3822   /*    Return the version of the FreeType library being used.  This is    */
3823   /*    useful when dynamically linking to the library, since one cannot   */
3824   /*    use the macros @FREETYPE_MAJOR, @FREETYPE_MINOR, and               */
3825   /*    @FREETYPE_PATCH.                                                   */
3826   /*                                                                       */
3827   /* <Input>                                                               */
3828   /*    library :: A source library handle.                                */
3829   /*                                                                       */
3830   /* <Output>                                                              */
3831   /*    amajor  :: The major version number.                               */
3832   /*                                                                       */
3833   /*    aminor  :: The minor version number.                               */
3834   /*                                                                       */
3835   /*    apatch  :: The patch version number.                               */
3836   /*                                                                       */
3837   /* <Note>                                                                */
3838   /*    The reason why this function takes a `library' argument is because */
3839   /*    certain programs implement library initialization in a custom way  */
3840   /*    that doesn't use @FT_Init_FreeType.                                */
3841   /*                                                                       */
3842   /*    In such cases, the library version might not be available before   */
3843   /*    the library object has been created.                               */
3844   /*                                                                       */
3845   FT_EXPORT( void )
3846   FT_Library_Version( FT_Library   library,
3847                       FT_Int      *amajor,
3848                       FT_Int      *aminor,
3849                       FT_Int      *apatch );
3850 
3851 
3852   /*************************************************************************/
3853   /*                                                                       */
3854   /* <Function>                                                            */
3855   /*    FT_Face_CheckTrueTypePatents                                       */
3856   /*                                                                       */
3857   /* <Description>                                                         */
3858   /*    Parse all bytecode instructions of a TrueType font file to check   */
3859   /*    whether any of the patented opcodes are used.  This is only useful */
3860   /*    if you want to be able to use the unpatented hinter with           */
3861   /*    fonts that do *not* use these opcodes.                             */
3862   /*                                                                       */
3863   /*    Note that this function parses *all* glyph instructions in the     */
3864   /*    font file, which may be slow.                                      */
3865   /*                                                                       */
3866   /* <Input>                                                               */
3867   /*    face :: A face handle.                                             */
3868   /*                                                                       */
3869   /* <Return>                                                              */
3870   /*    1~if this is a TrueType font that uses one of the patented         */
3871   /*    opcodes, 0~otherwise.                                              */
3872   /*                                                                       */
3873   /* <Note>                                                                */
3874   /*    Since May 2010, TrueType hinting is no longer patented.            */
3875   /*                                                                       */
3876   /* <Since>                                                               */
3877   /*    2.3.5                                                              */
3878   /*                                                                       */
3879   FT_EXPORT( FT_Bool )
3880   FT_Face_CheckTrueTypePatents( FT_Face  face );
3881 
3882 
3883   /*************************************************************************/
3884   /*                                                                       */
3885   /* <Function>                                                            */
3886   /*    FT_Face_SetUnpatentedHinting                                       */
3887   /*                                                                       */
3888   /* <Description>                                                         */
3889   /*    Enable or disable the unpatented hinter for a given face.          */
3890   /*    Only enable it if you have determined that the face doesn't        */
3891   /*    use any patented opcodes (see @FT_Face_CheckTrueTypePatents).      */
3892   /*                                                                       */
3893   /* <Input>                                                               */
3894   /*    face  :: A face handle.                                            */
3895   /*                                                                       */
3896   /*    value :: New boolean setting.                                      */
3897   /*                                                                       */
3898   /* <Return>                                                              */
3899   /*    The old setting value.  This will always be false if this is not   */
3900   /*    an SFNT font, or if the unpatented hinter is not compiled in this  */
3901   /*    instance of the library.                                           */
3902   /*                                                                       */
3903   /* <Note>                                                                */
3904   /*    Since May 2010, TrueType hinting is no longer patented.            */
3905   /*                                                                       */
3906   /* <Since>                                                               */
3907   /*    2.3.5                                                              */
3908   /*                                                                       */
3909   FT_EXPORT( FT_Bool )
3910   FT_Face_SetUnpatentedHinting( FT_Face  face,
3911                                 FT_Bool  value );
3912 
3913   /* */
3914 
3915 
3916 FT_END_HEADER
3917 
3918 #endif /* __FREETYPE_H__ */
3919 
3920 
3921 /* END */
3922