1 /***************************************************************************/
5 /* FreeType utility file for PS names support (body). */
7 /* Copyright 2002, 2003, 2004 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 /***************************************************************************/
20 #include FT_INTERNAL_OBJECTS_H
21 #include FT_INTERNAL_SERVICE_H
22 #include FT_SERVICE_POSTSCRIPT_INFO_H
25 /* documentation is in t1tables.h */
27 FT_EXPORT_DEF( FT_Error
)
28 FT_Get_PS_Font_Info( FT_Face face
,
29 PS_FontInfoRec
* afont_info
)
31 FT_Error error
= FT_Err_Invalid_Argument
;
36 FT_Service_PsInfo service
= NULL
;
39 FT_FACE_FIND_SERVICE( face
, service
, POSTSCRIPT_INFO
);
41 if ( service
&& service
->ps_get_font_info
)
42 error
= service
->ps_get_font_info( face
, afont_info
);
49 /* documentation is in t1tables.h */
51 FT_EXPORT_DEF( FT_Int
)
52 FT_Has_PS_Glyph_Names( FT_Face face
)
55 FT_Service_PsInfo service
= NULL
;
60 FT_FACE_FIND_SERVICE( face
, service
, POSTSCRIPT_INFO
);
62 if ( service
&& service
->ps_has_glyph_names
)
63 result
= service
->ps_has_glyph_names( face
);
70 /* documentation is in t1tables.h */
72 FT_EXPORT_DEF( FT_Error
)
73 FT_Get_PS_Font_Private( FT_Face face
,
74 PS_PrivateRec
* afont_private
)
76 FT_Error error
= FT_Err_Invalid_Argument
;
81 FT_Service_PsInfo service
= NULL
;
84 FT_FACE_FIND_SERVICE( face
, service
, POSTSCRIPT_INFO
);
86 if ( service
&& service
->ps_get_font_private
)
87 error
= service
->ps_get_font_private( face
, afont_private
);