2002-10-31 09:30:19 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ftpfr.c */
|
|
|
|
/* */
|
2003-04-23 07:38:13 +02:00
|
|
|
/* FreeType API for accessing PFR-specific data (body). */
|
2002-10-31 09:30:19 +01:00
|
|
|
/* */
|
2003-04-23 07:38:13 +02:00
|
|
|
/* Copyright 2002, 2003 by */
|
2002-10-31 09:30:19 +01:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
|
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_INTERNAL_PFR_H
|
|
|
|
#include FT_INTERNAL_OBJECTS_H
|
|
|
|
|
|
|
|
|
2003-04-23 07:38:13 +02:00
|
|
|
/* check the format */
|
2002-10-31 09:30:19 +01:00
|
|
|
static FT_Error
|
2003-04-23 07:38:13 +02:00
|
|
|
ft_pfr_check( FT_Face face,
|
|
|
|
FT_PFR_Service *aservice )
|
2002-10-31 09:30:19 +01:00
|
|
|
{
|
|
|
|
FT_Error error = FT_Err_Bad_Argument;
|
|
|
|
|
2003-04-23 07:38:13 +02:00
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
if ( face && face->driver )
|
|
|
|
{
|
|
|
|
FT_Module module = (FT_Module) face->driver;
|
|
|
|
const char* name = module->clazz->module_name;
|
|
|
|
|
2003-04-23 07:38:13 +02:00
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
if ( name[0] == 'p' &&
|
|
|
|
name[1] == 'f' &&
|
|
|
|
name[2] == 'r' &&
|
2003-09-09 22:11:56 +02:00
|
|
|
name[3] == 0 )
|
2002-10-31 09:30:19 +01:00
|
|
|
{
|
|
|
|
*aservice = (FT_PFR_Service) module->clazz->module_interface;
|
|
|
|
error = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FT_EXPORT_DEF( FT_Error )
|
2003-04-23 07:38:13 +02:00
|
|
|
FT_Get_PFR_Metrics( FT_Face face,
|
|
|
|
FT_UInt *aoutline_resolution,
|
|
|
|
FT_UInt *ametrics_resolution,
|
|
|
|
FT_Fixed *ametrics_x_scale,
|
|
|
|
FT_Fixed *ametrics_y_scale )
|
2002-10-31 09:30:19 +01:00
|
|
|
{
|
|
|
|
FT_Error error;
|
|
|
|
FT_PFR_Service service;
|
|
|
|
|
2003-04-23 07:38:13 +02:00
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
error = ft_pfr_check( face, &service );
|
|
|
|
if ( !error )
|
|
|
|
{
|
|
|
|
error = service->get_metrics( face,
|
|
|
|
aoutline_resolution,
|
|
|
|
ametrics_resolution,
|
|
|
|
ametrics_x_scale,
|
|
|
|
ametrics_y_scale );
|
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2003-04-23 07:38:13 +02:00
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
FT_EXPORT_DEF( FT_Error )
|
|
|
|
FT_Get_PFR_Kerning( FT_Face face,
|
|
|
|
FT_UInt left,
|
|
|
|
FT_UInt right,
|
|
|
|
FT_Vector *avector )
|
|
|
|
{
|
|
|
|
FT_Error error;
|
|
|
|
FT_PFR_Service service;
|
|
|
|
|
2003-04-23 07:38:13 +02:00
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
error = ft_pfr_check( face, &service );
|
|
|
|
if ( !error )
|
|
|
|
{
|
|
|
|
error = service->get_kerning( face, left, right, avector );
|
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FT_EXPORT_DEF( FT_Error )
|
2003-04-23 07:38:13 +02:00
|
|
|
FT_Get_PFR_Advance( FT_Face face,
|
|
|
|
FT_UInt gindex,
|
|
|
|
FT_Pos *aadvance )
|
2002-10-31 09:30:19 +01:00
|
|
|
{
|
|
|
|
FT_Error error;
|
|
|
|
FT_PFR_Service service;
|
|
|
|
|
2003-04-23 07:38:13 +02:00
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
error = ft_pfr_check( face, &service );
|
|
|
|
if ( !error )
|
|
|
|
{
|
|
|
|
error = service->get_advance( face, gindex, aadvance );
|
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2003-04-23 07:38:13 +02:00
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
/* END */
|