* src/base/fttype1.c: Include FT_INTERNAL_TYPE42_TYPES_H.

(t1_face_check_cast): Removed.
(FT_Get_PS_Font_Info): Make it work with CID and Type 42 drivers
also.

* src/type42/t42parse.c (t42_parse_sfnts): Fix compiler warning.
This commit is contained in:
Werner Lemberg 2002-06-20 21:03:48 +00:00
parent 7395da84dd
commit dd5436fbb2
3 changed files with 30 additions and 32 deletions

View File

@ -1,3 +1,14 @@
2002-06-19 Detlef Würkner <TetiSoft@apg.lahn.de>
* src/base/fttype1.c: Include FT_INTERNAL_TYPE42_TYPES_H.
(t1_face_check_cast): Removed.
(FT_Get_PS_Font_Info): Make it work with CID and Type 42 drivers
also.
2002-06-19 Sebastien BARRE <sebastien@barre.nom.fr>
* src/type42/t42parse.c (t42_parse_sfnts): Fix compiler warning.
2002-06-19 Werner Lemberg <wl@gnu.org>
* src/base/ftoutln.c (FT_Vector_Transform): Fix serious typo

View File

@ -18,49 +18,35 @@
#include <ft2build.h>
#include FT_INTERNAL_TYPE1_TYPES_H
#include FT_INTERNAL_TYPE42_TYPES_H
#include FT_INTERNAL_OBJECTS_H
/* Cast a FT_Face to a T1_Face if necessary. */
/* This implementation sucks, but a lot of things should change in the */
/* future anyway... */
/* */
static T1_Face
t1_face_check_cast( FT_Face face )
{
FT_Module driver;
T1_Face result = NULL;
if ( face && face->driver != NULL )
{
driver = (FT_Module)face->driver;
if ( driver->clazz && driver->clazz->module_name &&
ft_strcmp( driver->clazz->module_name, "type1" ) == 0 )
{
/* correct typecast! */
result = (T1_Face)face;
}
}
return result;
}
/* documentation is in t1tables.h */
FT_EXPORT_DEF( FT_Error )
FT_Get_PS_Font_Info( FT_Face face,
PS_FontInfoRec* afont_info )
{
FT_Error error = FT_Err_Invalid_Argument;
T1_Face t1_face = t1_face_check_cast( face );
PS_FontInfo font_info = NULL;
FT_Error error = FT_Err_Invalid_Argument;
const char* driver_name;
if ( t1_face != NULL )
if ( face && face->driver && face->driver->root.clazz )
{
*afont_info = t1_face->type1.font_info;
error = FT_Err_Ok;
driver_name = face->driver->root.clazz->module_name;
if ( ft_strcmp( driver_name, "type1" ) == 0 )
font_info = &((T1_Face)face)->type1.font_info;
else if ( ft_strcmp( driver_name, "t1cid" ) == 0 )
font_info = &((CID_Face)face)->cid.font_info;
else if ( ft_strcmp( driver_name, "type42" ) == 0 )
font_info = &((T42_Face)face)->type42.font_info;
}
if ( font_info != NULL )
{
*afont_info = *font_info;
error = FT_Err_Ok;
}
return error;

View File

@ -629,7 +629,8 @@
goto Fail;
}
v = (FT_Byte)( 16 * t42_hexval( *cur++ ) + t42_hexval( *cur++ ) );
v = (FT_Byte)( 16 * t42_hexval( *cur ) + t42_hexval( *( cur + 1 ) ) );
cur += 2;
string_size++;
}