1 /***************************************************************************/
5 /* OpenType Glyph Loader (specification). */
7 /* Copyright 1996-2001, 2002, 2003, 2004, 2006, 2007, 2008 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */
16 /***************************************************************************/
19 #ifndef __CFFGLOAD_H__
20 #define __CFFGLOAD_H__
24 #include FT_FREETYPE_H
31 #define CFF_MAX_OPERANDS 48
32 #define CFF_MAX_SUBRS_CALLS 32
35 /*************************************************************************/
41 /* A structure used during glyph loading to store its outline. */
44 /* memory :: The current memory object. */
46 /* face :: The current face object. */
48 /* glyph :: The current glyph slot. */
50 /* loader :: The current glyph loader. */
52 /* base :: The base glyph outline. */
54 /* current :: The current glyph outline. */
56 /* last :: The last point position. */
58 /* pos_x :: The horizontal translation (if composite glyph). */
60 /* pos_y :: The vertical translation (if composite glyph). */
62 /* left_bearing :: The left side bearing point. */
64 /* advance :: The horizontal advance vector. */
68 /* path_begun :: A flag which indicates that a new path has begun. */
70 /* load_points :: If this flag is not set, no points are loaded. */
72 /* no_recurse :: Set but not used. */
74 /* metrics_only :: A boolean indicating that we only want to compute */
75 /* the metrics of a given glyph, not load all of its */
78 /* hints_funcs :: Auxiliary pointer for hinting. */
80 /* hints_globals :: Auxiliary pointer for hinting. */
82 typedef struct CFF_Builder_
87 FT_GlyphLoader loader
;
96 FT_Vector left_bearing
;
99 FT_BBox bbox
; /* bounding box */
104 FT_Bool metrics_only
;
106 void* hints_funcs
; /* hinter-specific */
107 void* hints_globals
; /* hinter-specific */
112 /* execution context charstring zone */
114 typedef struct CFF_Decoder_Zone_
123 typedef struct CFF_Decoder_
128 FT_Fixed stack
[CFF_MAX_OPERANDS
+ 1];
131 CFF_Decoder_Zone zones
[CFF_MAX_SUBRS_CALLS
+ 1];
132 CFF_Decoder_Zone
* zone
;
135 FT_Int num_flex_vectors
;
136 FT_Vector flex_vectors
[7];
139 FT_Pos nominal_width
;
144 FT_Int len_buildchar
;
155 FT_Byte
** glyph_names
; /* for pure CFF fonts only */
156 FT_UInt num_glyphs
; /* number of glyphs in font */
158 FT_Render_Mode hint_mode
;
164 cff_decoder_init( CFF_Decoder
* decoder
,
169 FT_Render_Mode hint_mode
);
172 cff_decoder_prepare( CFF_Decoder
* decoder
,
174 FT_UInt glyph_index
);
176 #if 0 /* unused until we support pure CFF fonts */
178 /* Compute the maximum advance width of a font through quick parsing */
180 cff_compute_max_advance( TT_Face face
,
181 FT_Int
* max_advance
);
186 cff_decoder_parse_charstrings( CFF_Decoder
* decoder
,
187 FT_Byte
* charstring_base
,
188 FT_ULong charstring_len
);
191 cff_slot_load( CFF_GlyphSlot glyph
,
194 FT_Int32 load_flags
);
199 #endif /* __CFFGLOAD_H__ */