1 /***************************************************************************/
5 /* FreeType API for accessing PFR-specific data (body). */
7 /* Copyright 2002, 2003, 2004, 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 #include FT_INTERNAL_OBJECTS_H
20 #include FT_SERVICE_PFR_H
23 /* check the format */
24 static FT_Service_PfrMetrics
25 ft_pfr_check( FT_Face face
)
27 FT_Service_PfrMetrics service
;
30 FT_FACE_LOOKUP_SERVICE( face
, service
, PFR_METRICS
);
36 /* documentation is in ftpfr.h */
38 FT_EXPORT_DEF( FT_Error
)
39 FT_Get_PFR_Metrics( FT_Face face
,
40 FT_UInt
*aoutline_resolution
,
41 FT_UInt
*ametrics_resolution
,
42 FT_Fixed
*ametrics_x_scale
,
43 FT_Fixed
*ametrics_y_scale
)
45 FT_Error error
= FT_Err_Ok
;
46 FT_Service_PfrMetrics service
;
50 return FT_Err_Invalid_Argument
;
52 service
= ft_pfr_check( face
);
55 error
= service
->get_metrics( face
,
63 FT_Fixed x_scale
, y_scale
;
66 /* this is not a PFR font */
67 if ( aoutline_resolution
)
68 *aoutline_resolution
= face
->units_per_EM
;
70 if ( ametrics_resolution
)
71 *ametrics_resolution
= face
->units_per_EM
;
73 x_scale
= y_scale
= 0x10000L
;
76 x_scale
= face
->size
->metrics
.x_scale
;
77 y_scale
= face
->size
->metrics
.y_scale
;
80 if ( ametrics_x_scale
)
81 *ametrics_x_scale
= x_scale
;
83 if ( ametrics_y_scale
)
84 *ametrics_y_scale
= y_scale
;
86 error
= FT_Err_Unknown_File_Format
;
93 /* documentation is in ftpfr.h */
95 FT_EXPORT_DEF( FT_Error
)
96 FT_Get_PFR_Kerning( FT_Face face
,
102 FT_Service_PfrMetrics service
;
106 return FT_Err_Invalid_Argument
;
108 service
= ft_pfr_check( face
);
110 error
= service
->get_kerning( face
, left
, right
, avector
);
112 error
= FT_Get_Kerning( face
, left
, right
,
113 FT_KERNING_UNSCALED
, avector
);
119 /* documentation is in ftpfr.h */
121 FT_EXPORT_DEF( FT_Error
)
122 FT_Get_PFR_Advance( FT_Face face
,
127 FT_Service_PfrMetrics service
;
130 service
= ft_pfr_check( face
);
133 error
= service
->get_advance( face
, gindex
, aadvance
);
136 /* XXX: TODO: PROVIDE ADVANCE-LOADING METHOD TO ALL FONT DRIVERS */
137 error
= FT_Err_Invalid_Argument
;