documentation updates for 2.1.2

This commit is contained in:
David Turner 2002-06-23 10:57:31 +00:00
parent 9cbb166d6b
commit 74c0d93304
6 changed files with 138 additions and 84 deletions

View File

@ -26,6 +26,13 @@
FT_BEGIN_HEADER FT_BEGIN_HEADER
/*************************************************************************/
/* */
/* <Section> */
/* cache_subsystem */
/* */
/*************************************************************************/
/*************************************************************************/ /*************************************************************************/
/* */ /* */
/* @type: */ /* @type: */

View File

@ -18,7 +18,7 @@
#ifndef __FT_HEADER_H__ #ifndef __FT_HEADER_H__
#define __FT_HEADER_H__ #define __FT_HEADER_H__
/*************************************************************************/ /*@***********************************************************************/
/* */ /* */
/* <Macro> */ /* <Macro> */
/* FT_BEGIN_HEADER */ /* FT_BEGIN_HEADER */
@ -36,7 +36,7 @@
#endif #endif
/*************************************************************************/ /*@***********************************************************************/
/* */ /* */
/* <Macro> */ /* <Macro> */
/* FT_END_HEADER */ /* FT_END_HEADER */

View File

@ -241,11 +241,12 @@ FT_BEGIN_HEADER
/* completely independent from the others; it is the `root' of a set */ /* completely independent from the others; it is the `root' of a set */
/* of objects like fonts, faces, sizes, etc. */ /* of objects like fonts, faces, sizes, etc. */
/* */ /* */
/* It also embeds a system object (see FT_System), as well as a */ /* It also embeds a memory manager (see @FT_Memory), as well as a */
/* scan-line converter object (see FT_Raster). */ /* scan-line converter object (see @FT_Raster). */
/* */ /* */
/* <Note> */ /* <Note> */
/* Library objects are created through FT_Init_FreeType(). */ /* Library objects are normally created by @FT_Init_FreeType, and */
/* destroyed with @FT_Done_FreeType */
/* */ /* */
typedef struct FT_LibraryRec_ *FT_Library; typedef struct FT_LibraryRec_ *FT_Library;
@ -270,11 +271,7 @@ FT_BEGIN_HEADER
/* */ /* */
/* <Description> */ /* <Description> */
/* A handle to a given FreeType font driver object. Each font driver */ /* A handle to a given FreeType font driver object. Each font driver */
/* is able to create faces, sizes, glyph slots, and charmaps from the */ /* is a special module capable of creating faces from font files. */
/* resources whose format it supports. */
/* */
/* A driver can support either bitmap, graymap, or scalable font */
/* formats. */
/* */ /* */
typedef struct FT_DriverRec_* FT_Driver; typedef struct FT_DriverRec_* FT_Driver;
@ -285,10 +282,10 @@ FT_BEGIN_HEADER
/* FT_Renderer */ /* FT_Renderer */
/* */ /* */
/* <Description> */ /* <Description> */
/* A handle to a given FreeType renderer. A renderer is in charge of */ /* A handle to a given FreeType renderer. A renderer is a special */
/* converting a glyph image to a bitmap, when necessary. Each */ /* module in charge of converting a glyph image to a bitmap, when */
/* supports a given glyph image format, and one or more target */ /* necessary. Each renderer supports a given glyph image format, and */
/* surface depths. */ /* one or more target surface depths. */
/* */ /* */
typedef struct FT_RendererRec_* FT_Renderer; typedef struct FT_RendererRec_* FT_Renderer;
@ -299,12 +296,21 @@ FT_BEGIN_HEADER
/* FT_Face */ /* FT_Face */
/* */ /* */
/* <Description> */ /* <Description> */
/* A handle to a given driver face object. A face object contains */ /* A handle to a given typographic face object. A face object models */
/* all the instance and glyph independent data of a font file */ /* a given typeface, in a given style. */
/* typeface. */
/* */ /* */
/* A face object is created from a resource object through the */ /* <Note> */
/* new_face() method of a given driver. */ /* Each face object also owns a single @FT_GlyphSlot object, as well */
/* as one or more @FT_Size objects. */
/* */
/* use @FT_New_Face or @FT_Open_Face to create a new face object from */
/* a given filepathname or a custom input stream. */
/* */
/* use @FT_Done_Face to destroy it (along with its slot and sizes) */
/* */
/* <Also> */
/* the @FT_FaceRec details the publicly accessible fields of a given */
/* face object. */
/* */ /* */
typedef struct FT_FaceRec_* FT_Face; typedef struct FT_FaceRec_* FT_Face;
@ -315,12 +321,21 @@ FT_BEGIN_HEADER
/* FT_Size */ /* FT_Size */
/* */ /* */
/* <Description> */ /* <Description> */
/* A handle to a given driver size object. Such an object models the */ /* A handle to a given size object. Such an object models the */
/* _resolution_ AND _size_ dependent state of a given driver face */ /* data that depends on the current _resolution_ and _character_ */
/* size. */ /* _size_ in a given @FT_Face. */
/* */ /* */
/* A size object is always created from a given face object. It is */ /* <Note> */
/* discarded automatically by its parent face. */ /* Each face object owns one or more sizes. There is however a */
/* single _active_ size for the face at any time that will be */
/* used by functions like @FT_Load_Glyph, @FT_Get_Kerning, etc... */
/* */
/* you can use the @FT_Activate_Size API to change the current */
/* active size of any given face */
/* */
/* <Also> */
/* the @FT_SizeRec structure details the publicly accessible fields */
/* of a given face object. */
/* */ /* */
typedef struct FT_SizeRec_* FT_Size; typedef struct FT_SizeRec_* FT_Size;
@ -332,11 +347,16 @@ FT_BEGIN_HEADER
/* */ /* */
/* <Description> */ /* <Description> */
/* A handle to a given `glyph slot'. A slot is a container where it */ /* A handle to a given `glyph slot'. A slot is a container where it */
/* is possible to load any of the glyphs contained within its parent */ /* is possible to load any one of the glyphs contained in its parent */
/* face. */ /* face. */
/* */ /* */
/* A glyph slot is created from a given face object. It is discarded */ /* In other words, each time you call @FT_Load_Glyph or */
/* automatically by its parent face. */ /* @FT_Load_Char, the slot's content is erased by the new glyph data, */
/* i.e. the glyph's metrics, its image (bitmap or outline), and */
/* other control information */
/* */
/* <Also> */
/* @FT_GlyphSlotRec details the publicly accessible glyph fields */
/* */ /* */
typedef struct FT_GlyphSlotRec_* FT_GlyphSlot; typedef struct FT_GlyphSlotRec_* FT_GlyphSlot;
@ -352,8 +372,20 @@ FT_BEGIN_HEADER
/* parent's face. Some font formats may provide several charmaps per */ /* parent's face. Some font formats may provide several charmaps per */
/* font. */ /* font. */
/* */ /* */
/* A charmap is created from a given face object. It is discarded */ /* Each face object owns zero or more charmaps, but only one of */
/* automatically by its parent face. */ /* them can be "active" and used by @FT_Get_Char_Index or */
/* @FT_Load_Char */
/* */
/* The list of available charmaps in a face is available through the */
/* "face->num_charmaps" and "face->charmaps" fields of @FT_FaceRec */
/* */
/* the currently active charmap is available as "face->charmap". */
/* You should call @FT_Set_Charmap to change it */
/* */
/* <Note> */
/* when a new face is created (either through @FT_New_Face or */
/* @FT_Open_Face), the library looks for a Unicode charmap within */
/* the list and automatically activates it */
/* */ /* */
typedef struct FT_CharMapRec_* FT_CharMap; typedef struct FT_CharMapRec_* FT_CharMap;
@ -365,6 +397,8 @@ FT_BEGIN_HEADER
/* */ /* */
/* <Description> */ /* <Description> */
/* This macro converts four letter tags into an unsigned long. */ /* This macro converts four letter tags into an unsigned long. */
/* It is used to define "encoding" identifiers (see @FT_Encoding) */
/* */
/* */ /* */
#ifndef FT_ENC_TAG #ifndef FT_ENC_TAG
#define FT_ENC_TAG( value, _x1, _x2, _x3, _x4 ) \ #define FT_ENC_TAG( value, _x1, _x2, _x3, _x4 ) \
@ -419,13 +453,13 @@ FT_BEGIN_HEADER
/* FT_CharMapRec */ /* FT_CharMapRec */
/* */ /* */
/* <Description> */ /* <Description> */
/* The base charmap class. */ /* The base charmap structure. */
/* */ /* */
/* <Fields> */ /* <Fields> */
/* face :: A handle to the parent face object. */ /* face :: A handle to the parent face object. */
/* */ /* */
/* encoding :: A tag which identifies the charmap. Use this with */ /* encoding :: A @FT_Encoding tag identifying the charmap. Use */
/* FT_Select_Charmap(). */ /* this with @FT_Select_Charmap(). */
/* */ /* */
/* platform_id :: An ID number describing the platform for the */ /* platform_id :: An ID number describing the platform for the */
/* following encoding ID. This comes directly from */ /* following encoding ID. This comes directly from */
@ -436,10 +470,6 @@ FT_BEGIN_HEADER
/* comes from the TrueType specification and should be */ /* comes from the TrueType specification and should be */
/* emulated similarly. */ /* emulated similarly. */
/* */ /* */
/* <Note> */
/* We STRONGLY recommmend emulating a Unicode charmap for drivers */
/* that do not support TrueType or OpenType. */
/* */
typedef struct FT_CharMapRec_ typedef struct FT_CharMapRec_
{ {
FT_Face face; FT_Face face;
@ -466,9 +496,9 @@ FT_BEGIN_HEADER
/* */ /* */
/* <Description> */ /* <Description> */
/* An opaque handle to an FT_Face_InternalRec structure, used to */ /* An opaque handle to an FT_Face_InternalRec structure, used to */
/* model private data of a given FT_Face object. */ /* model private data of a given @FT_Face object. */
/* */ /* */
/* This field might change between releases of FreeType 2 and are */ /* This structure might change between releases of FreeType 2 and are */
/* not generally available to client applications. */ /* not generally available to client applications. */
/* */ /* */
typedef struct FT_Face_InternalRec_* FT_Face_Internal; typedef struct FT_Face_InternalRec_* FT_Face_Internal;
@ -476,7 +506,7 @@ FT_BEGIN_HEADER
/*************************************************************************/ /*************************************************************************/
/* */ /* */
/* FreeType base face class */ /* FreeType base face object */
/* */ /* */
/* <Struct> */ /* <Struct> */
/* FT_FaceRec */ /* FT_FaceRec */
@ -487,11 +517,11 @@ FT_BEGIN_HEADER
/* */ /* */
/* <Fields> */ /* <Fields> */
/* num_faces :: In the case where the face is located in a */ /* num_faces :: In the case where the face is located in a */
/* collection (i.e., a resource which embeds */ /* collection (i.e., a file which embed */
/* several faces), this is the total number of */ /* several faces), this is the total number of */
/* faces found in the resource. 1 by default. */ /* faces found in the resource. 1 by default. */
/* */ /* */
/* face_index :: The index of the face in its resource. */ /* face_index :: The index of the face in its font file. */
/* Usually, this is 0 for all normal font */ /* Usually, this is 0 for all normal font */
/* formats. It can be more in the case of */ /* formats. It can be more in the case of */
/* collections (which embed several fonts in a */ /* collections (which embed several fonts in a */
@ -499,7 +529,7 @@ FT_BEGIN_HEADER
/* */ /* */
/* face_flags :: A set of bit flags that give important */ /* face_flags :: A set of bit flags that give important */
/* information about the face; see the */ /* information about the face; see the */
/* FT_FACE_FLAG_XXX macros for details. */ /* FT_FACE_FLAG_XXX constants for details. */
/* */ /* */
/* style_flags :: A set of bit flags indicating the style of */ /* style_flags :: A set of bit flags indicating the style of */
/* the face (i.e., italic, bold, underline, */ /* the face (i.e., italic, bold, underline, */
@ -530,15 +560,14 @@ FT_BEGIN_HEADER
/* */ /* */
/* num_fixed_sizes :: The number of fixed sizes available in this */ /* num_fixed_sizes :: The number of fixed sizes available in this */
/* face. This should be set to 0 for scalable */ /* face. This should be set to 0 for scalable */
/* fonts, unless its resource includes a */ /* fonts, unless its face includes a complete */
/* complete set of glyphs (called a `strike') */ /* set of glyphs (called a `strike') for the */
/* for the specified size. */ /* specified sizes. */
/* */ /* */
/* available_sizes :: An array of sizes specifying the available */ /* available_sizes :: An array of sizes specifying the available */
/* bitmap/graymap sizes that are contained in */ /* bitmap/graymap sizes that are contained in */
/* in the font resource. Should be set to */ /* in the font face. Should be set to NULL if */
/* NULL if the field `num_fixed_sizes' is set */ /* the field `num_fixed_sizes' is set to 0. */
/* to 0. */
/* */ /* */
/* num_charmaps :: The total number of character maps in the */ /* num_charmaps :: The total number of character maps in the */
/* face. */ /* face. */
@ -546,12 +575,12 @@ FT_BEGIN_HEADER
/* charmaps :: A table of pointers to the face's charmaps. */ /* charmaps :: A table of pointers to the face's charmaps. */
/* Used to scan the list of available charmaps */ /* Used to scan the list of available charmaps */
/* -- this table might change after a call to */ /* -- this table might change after a call to */
/* FT_Attach_File/Stream (e.g. when used to */ /* @FT_Attach_File or @FT_Attach_Stream (e.g. */
/* hook an additional encoding/CMap to the */ /* when used to hook an additional encoding or */
/* face object). */ /* CMap to the face object). */
/* */ /* */
/* generic :: A field reserved for client uses. See the */ /* generic :: A field reserved for client uses. See the */
/* FT_Generic type description. */ /* @FT_Generic type description. */
/* */ /* */
/* bbox :: The font bounding box. Coordinates are */ /* bbox :: The font bounding box. Coordinates are */
/* expressed in font units (see units_per_EM). */ /* expressed in font units (see units_per_EM). */
@ -619,15 +648,6 @@ FT_BEGIN_HEADER
/* underline for this face. Only relevant for */ /* underline for this face. Only relevant for */
/* scalable formats. */ /* scalable formats. */
/* */ /* */
/* driver :: A handle to the face's parent driver */
/* object. */
/* */
/* memory :: A handle to the face's parent memory */
/* object. Used for the allocation of */
/* subsequent objects. */
/* */
/* stream :: A handle to the face's stream. */
/* */
/* glyph :: The face's associated glyph slot(s). This */ /* glyph :: The face's associated glyph slot(s). This */
/* object is created automatically with a new */ /* object is created automatically with a new */
/* face object. However, certain kinds of */ /* face object. However, certain kinds of */
@ -635,12 +655,9 @@ FT_BEGIN_HEADER
/* can need more than one slot to ease their */ /* can need more than one slot to ease their */
/* task. */ /* task. */
/* */ /* */
/* sizes_list :: The list of child sizes for this face. */ /* size :: the current active size for this face */
/* */ /* */
/* internal :: A pointer to internal fields of the face */ /* charmap :: the current active charmap for this face */
/* object. These fields can change freely */
/* between releases of FreeType and are not */
/* publicly available. */
/* */ /* */
typedef struct FT_FaceRec_ typedef struct FT_FaceRec_
{ {
@ -786,8 +803,8 @@ FT_BEGIN_HEADER
/* <Description> */ /* <Description> */
/* A bit-field constant, used to indicate that a given face contains */ /* A bit-field constant, used to indicate that a given face contains */
/* kerning information. When set, this information can be retrieved */ /* kerning information. When set, this information can be retrieved */
/* through the function FT_Get_Kerning(). Note that when unset, this */ /* through the function @FT_Get_Kerning(). Note that when unset, */
/* function will always return the kerning vector (0,0). */ /* this function will always return the kerning vector (0,0). */
/* */ /* */
#define FT_FACE_FLAG_KERNING 0x40 #define FT_FACE_FLAG_KERNING 0x40
@ -806,6 +823,11 @@ FT_BEGIN_HEADER
/* where each glyph bitmap is available directly in binary form */ /* where each glyph bitmap is available directly in binary form */
/* without any kind of compression. */ /* without any kind of compression. */
/* */ /* */
/* <Note> */
/* This bit flag is deprecated, because even if the bitmaps are */
/* available directly in the font file, the glyph sub-system is */
/* very likely to be faster anyway... */
/* */
#define FT_FACE_FLAG_FAST_GLYPHS 0x80 #define FT_FACE_FLAG_FAST_GLYPHS 0x80
@ -817,6 +839,7 @@ FT_BEGIN_HEADER
/* <Description> */ /* <Description> */
/* A bit-field constant, used to indicate that the font contains */ /* A bit-field constant, used to indicate that the font contains */
/* multiple masters and is capable of interpolating between them. */ /* multiple masters and is capable of interpolating between them. */
/* See the multiple-masters specific API for more details */
/* */ /* */
#define FT_FACE_FLAG_MULTIPLE_MASTERS 0x100 #define FT_FACE_FLAG_MULTIPLE_MASTERS 0x100
@ -828,7 +851,7 @@ FT_BEGIN_HEADER
/* */ /* */
/* <Description> */ /* <Description> */
/* A bit-field constant, used to indicate that the font contains */ /* A bit-field constant, used to indicate that the font contains */
/* glyph names that can be retrieved through FT_Get_Glyph_Name(). */ /* glyph names that can be retrieved through @FT_Get_Glyph_Name(). */
/* */ /* */
#define FT_FACE_FLAG_GLYPH_NAMES 0x200 #define FT_FACE_FLAG_GLYPH_NAMES 0x200
@ -841,7 +864,7 @@ FT_BEGIN_HEADER
/* <Description> */ /* <Description> */
/* This bit field is used internally by FreeType to indicate that */ /* This bit field is used internally by FreeType to indicate that */
/* a face's stream was provided by the client application and should */ /* a face's stream was provided by the client application and should */
/* not be destroyed by FT_Done_Face(). */ /* not be destroyed by @FT_Done_Face(). */
/* */ /* */
#define FT_FACE_FLAG_EXTERNAL_STREAM 0x4000 #define FT_FACE_FLAG_EXTERNAL_STREAM 0x4000
@ -952,7 +975,8 @@ FT_BEGIN_HEADER
/* @macro: FT_HAS_FAST_GLYPHS (face) */ /* @macro: FT_HAS_FAST_GLYPHS (face) */
/* */ /* */
/* @description: */ /* @description: */
/* XXX */ /* Deprecated, indicates that the face contains so-called "fast" */
/* glyph bitmaps. */
/* */ /* */
#define FT_HAS_FAST_GLYPHS( face ) \ #define FT_HAS_FAST_GLYPHS( face ) \
( face->face_flags & FT_FACE_FLAG_FAST_GLYPHS ) ( face->face_flags & FT_FACE_FLAG_FAST_GLYPHS )
@ -1218,8 +1242,8 @@ FT_BEGIN_HEADER
/* when the slot format is */ /* when the slot format is */
/* ft_glyph_format_bitmap. Note that the */ /* ft_glyph_format_bitmap. Note that the */
/* address and content of the bitmap buffer can */ /* address and content of the bitmap buffer can */
/* change between calls of FT_Load_Glyph() and a */ /* change between calls of @FT_Load_Glyph() and */
/* few other functions. */ /* a few other functions. */
/* */ /* */
/* bitmap_left :: This is the bitmap's left bearing expressed */ /* bitmap_left :: This is the bitmap's left bearing expressed */
/* in integer pixels. Of course, this is only */ /* in integer pixels. Of course, this is only */
@ -1326,7 +1350,7 @@ FT_BEGIN_HEADER
/* FT_Init_FreeType */ /* FT_Init_FreeType */
/* */ /* */
/* <Description> */ /* <Description> */
/* Initializes a new FreeType library object. The set of drivers */ /* Initializes a new FreeType library object. The set of modules */
/* that are registered by this function is determined at build time. */ /* that are registered by this function is determined at build time. */
/* */ /* */
/* <Output> */ /* <Output> */
@ -1365,8 +1389,8 @@ FT_BEGIN_HEADER
/* certain programs implement library initialization in a custom way */ /* certain programs implement library initialization in a custom way */
/* that doesn't use `FT_Init_FreeType'. */ /* that doesn't use `FT_Init_FreeType'. */
/* */ /* */
/* In such cases it can happen that the library version is not known */ /* In such cases, the library version might not be available before */
/* until the library object has been created. */ /* the library object has been created. */
/* */ /* */
FT_EXPORT( void ) FT_EXPORT( void )
FT_Library_Version( FT_Library library, FT_Library_Version( FT_Library library,
@ -1554,6 +1578,9 @@ FT_BEGIN_HEADER
/* `aface'. Its return value should be 0 if the font format is */ /* `aface'. Its return value should be 0 if the font format is */
/* recognized, or non-zero otherwise. */ /* recognized, or non-zero otherwise. */
/* */ /* */
/* Each new face object created with this function also owns a */
/* default @FT_Size object, accessible as `face->size' */
/* */
FT_EXPORT( FT_Error ) FT_EXPORT( FT_Error )
FT_New_Face( FT_Library library, FT_New_Face( FT_Library library,
const char* filepathname, const char* filepathname,

View File

@ -11,14 +11,25 @@
/* base_interface */ /* base_interface */
/* glyph_management */ /* glyph_management */
/* mac_specific */ /* mac_specific */
/* sizes_management */
/* header_file_macros */
/* */
/***************************************************************************/
/***************************************************************************/
/* */
/* <Chapter> */
/* format_specific */
/* */
/* <Title> */
/* Format-Specific API */
/* */
/* <Sections> */
/* multiple_masters */ /* multiple_masters */
/* truetype_tables */ /* truetype_tables */
/* type1_tables */ /* type1_tables */
/* sfnt_names */ /* sfnt_names */
/* sizes_management */ /* bdf_fonts */
/* module_management */
/* system_interface */
/* header_file_macros */
/* */ /* */
/***************************************************************************/ /***************************************************************************/
@ -50,6 +61,8 @@
/* list_processing */ /* list_processing */
/* outline_processing */ /* outline_processing */
/* raster */ /* raster */
/* system_interface */
/* module_management */
/* */ /* */
/***************************************************************************/ /***************************************************************************/

View File

@ -57,7 +57,7 @@ FT_BEGIN_HEADER
/* mostly in order to manage several character pixel sizes of the */ /* mostly in order to manage several character pixel sizes of the */
/* same font family and style. See @FT_New_Size and @FT_Done_Size. */ /* same font family and style. See @FT_New_Size and @FT_Done_Size. */
/* */ /* */
/* Note that @FT_Set_Pixel_Sizes and @FT_Set_Character_Size only */ /* Note that @FT_Set_Pixel_Sizes and @FT_Set_Char_Size only */
/* modify the contents of the current "active" size; you thus need */ /* modify the contents of the current "active" size; you thus need */
/* to use @FT_Activate_Size to change it. */ /* to use @FT_Activate_Size to change it. */
/* */ /* */

View File

@ -36,14 +36,15 @@ FT_BEGIN_HEADER
/* basic_types */ /* basic_types */
/* */ /* */
/* <Title> */ /* <Title> */
/* Basic Types */ /* Basic Data Types */
/* */ /* */
/* <Abstract> */ /* <Abstract> */
/* The basic data types defined by the library. */ /* The basic data types defined by the library. */
/* */ /* */
/* <Description> */ /* <Description> */
/* This section contains the basic data types defined by FreeType 2, */ /* This section contains the basic data types defined by FreeType 2, */
/* ranging from simple scalar types to font specific ones. */ /* ranging from simple scalar types to bitmap descriptors. More */
/* font-specific structures are defined in a different section. */
/* */ /* */
/* <Order> */ /* <Order> */
/* FT_Byte */ /* FT_Byte */
@ -57,6 +58,7 @@ FT_BEGIN_HEADER
/* FT_Bool */ /* FT_Bool */
/* FT_Offset */ /* FT_Offset */
/* FT_PtrDist */ /* FT_PtrDist */
/* FT_String */
/* FT_Error */ /* FT_Error */
/* FT_Fixed */ /* FT_Fixed */
/* FT_Pointer */ /* FT_Pointer */
@ -64,6 +66,12 @@ FT_BEGIN_HEADER
/* FT_Vector */ /* FT_Vector */
/* FT_BBox */ /* FT_BBox */
/* FT_Matrix */ /* FT_Matrix */
/* FT_FWord */
/* FT_UFWord */
/* FT_F2Dot14 */
/* FT_UnitVector */
/* FT_F26Dot6 */
/* */
/* */ /* */
/* FT_Generic */ /* FT_Generic */
/* FT_Generic_Finalizer */ /* FT_Generic_Finalizer */
@ -73,7 +81,6 @@ FT_BEGIN_HEADER
/* FT_Palette_Mode */ /* FT_Palette_Mode */
/* FT_Glyph_Format */ /* FT_Glyph_Format */
/* FT_IMAGE_TAG */ /* FT_IMAGE_TAG */
/* FT_Glyph_Format */
/* */ /* */
/*************************************************************************/ /*************************************************************************/