1 /***************************************************************************/
5 /* High-level Type 42 driver interface (body). */
7 /* Copyright 2002, 2003, 2004, 2006, 2007, 2009 by Roberto Alameda. */
9 /* This file is part of the FreeType project, and may only be used, */
10 /* modified, and distributed under the terms of the FreeType project */
11 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
12 /* this file you indicate that you have read the license and */
13 /* understand and accept it fully. */
15 /***************************************************************************/
18 /*************************************************************************/
20 /* This driver implements Type42 fonts as described in the */
21 /* Technical Note #5012 from Adobe, with these limitations: */
23 /* 1) CID Fonts are not currently supported. */
24 /* 2) Incremental fonts making use of the GlyphDirectory keyword */
25 /* will be loaded, but the rendering will be using the TrueType */
27 /* 3) As for Type1 fonts, CDevProc is not supported. */
28 /* 4) The Metrics dictionary is not supported. */
29 /* 5) AFM metrics are not supported. */
31 /* In other words, this driver supports Type42 fonts derived from */
32 /* TrueType fonts in a non-CID manner, as done by usual conversion */
35 /*************************************************************************/
41 #include FT_INTERNAL_DEBUG_H
43 #include FT_SERVICE_XFREE86_NAME_H
44 #include FT_SERVICE_GLYPH_DICT_H
45 #include FT_SERVICE_POSTSCRIPT_NAME_H
46 #include FT_SERVICE_POSTSCRIPT_INFO_H
49 #define FT_COMPONENT trace_t42
59 t42_get_glyph_name( T42_Face face
,
64 FT_STRCPYN( buffer
, face
->type1
.glyph_names
[glyph_index
], buffer_max
);
71 t42_get_name_index( T42_Face face
,
72 FT_String
* glyph_name
)
78 for ( i
= 0; i
< face
->type1
.num_glyphs
; i
++ )
80 gname
= face
->type1
.glyph_names
[i
];
82 if ( glyph_name
[0] == gname
[0] && !ft_strcmp( glyph_name
, gname
) )
83 return (FT_UInt
)ft_atol( (const char *)face
->type1
.charstrings
[i
] );
90 static const FT_Service_GlyphDictRec t42_service_glyph_dict
=
92 (FT_GlyphDict_GetNameFunc
) t42_get_glyph_name
,
93 (FT_GlyphDict_NameIndexFunc
)t42_get_name_index
99 * POSTSCRIPT NAME SERVICE
104 t42_get_ps_font_name( T42_Face face
)
106 return (const char*)face
->type1
.font_name
;
110 static const FT_Service_PsFontNameRec t42_service_ps_font_name
=
112 (FT_PsName_GetFunc
)t42_get_ps_font_name
118 * POSTSCRIPT INFO SERVICE
123 t42_ps_get_font_info( FT_Face face
,
124 PS_FontInfoRec
* afont_info
)
126 *afont_info
= ((T42_Face
)face
)->type1
.font_info
;
133 t42_ps_get_font_extra( FT_Face face
,
134 PS_FontExtraRec
* afont_extra
)
136 *afont_extra
= ((T42_Face
)face
)->type1
.font_extra
;
143 t42_ps_has_glyph_names( FT_Face face
)
152 t42_ps_get_font_private( FT_Face face
,
153 PS_PrivateRec
* afont_private
)
155 *afont_private
= ((T42_Face
)face
)->type1
.private_dict
;
161 static const FT_Service_PsInfoRec t42_service_ps_info
=
163 (PS_GetFontInfoFunc
) t42_ps_get_font_info
,
164 (PS_GetFontExtraFunc
) t42_ps_get_font_extra
,
165 (PS_HasGlyphNamesFunc
) t42_ps_has_glyph_names
,
166 (PS_GetFontPrivateFunc
)t42_ps_get_font_private
176 static const FT_ServiceDescRec t42_services
[] =
178 { FT_SERVICE_ID_GLYPH_DICT
, &t42_service_glyph_dict
},
179 { FT_SERVICE_ID_POSTSCRIPT_FONT_NAME
, &t42_service_ps_font_name
},
180 { FT_SERVICE_ID_POSTSCRIPT_INFO
, &t42_service_ps_info
},
181 { FT_SERVICE_ID_XF86_NAME
, FT_XF86_FORMAT_TYPE_42
},
186 static FT_Module_Interface
187 T42_Get_Interface( FT_Driver driver
,
188 const FT_String
* t42_interface
)
192 return ft_service_list_lookup( t42_services
, t42_interface
);
196 const FT_Driver_ClassRec t42_driver_class
=
199 FT_MODULE_FONT_DRIVER
|
200 FT_MODULE_DRIVER_SCALABLE
|
201 #ifdef TT_USE_BYTECODE_INTERPRETER
202 FT_MODULE_DRIVER_HAS_HINTER
,
207 sizeof ( T42_DriverRec
),
213 0, /* format interface */
215 (FT_Module_Constructor
)T42_Driver_Init
,
216 (FT_Module_Destructor
) T42_Driver_Done
,
217 (FT_Module_Requester
) T42_Get_Interface
,
220 sizeof ( T42_FaceRec
),
221 sizeof ( T42_SizeRec
),
222 sizeof ( T42_GlyphSlotRec
),
224 (FT_Face_InitFunc
) T42_Face_Init
,
225 (FT_Face_DoneFunc
) T42_Face_Done
,
226 (FT_Size_InitFunc
) T42_Size_Init
,
227 (FT_Size_DoneFunc
) T42_Size_Done
,
228 (FT_Slot_InitFunc
) T42_GlyphSlot_Init
,
229 (FT_Slot_DoneFunc
) T42_GlyphSlot_Done
,
231 #ifdef FT_CONFIG_OPTION_OLD_INTERNALS
232 ft_stub_set_char_sizes
,
233 ft_stub_set_pixel_sizes
,
235 (FT_Slot_LoadFunc
) T42_GlyphSlot_Load
,
237 (FT_Face_GetKerningFunc
) 0,
238 (FT_Face_AttachFunc
) 0,
240 (FT_Face_GetAdvancesFunc
) 0,
241 (FT_Size_RequestFunc
) T42_Size_Request
,
242 (FT_Size_SelectFunc
) T42_Size_Select