1 /***************************************************************************/
5 /* OpenType font driver implementation (body). */
7 /* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 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_FREETYPE_H
21 #include FT_INTERNAL_DEBUG_H
22 #include FT_INTERNAL_STREAM_H
23 #include FT_INTERNAL_SFNT_H
24 #include FT_SERVICE_CID_H
25 #include FT_SERVICE_POSTSCRIPT_CMAPS_H
26 #include FT_SERVICE_POSTSCRIPT_INFO_H
27 #include FT_SERVICE_POSTSCRIPT_NAME_H
28 #include FT_SERVICE_TT_CMAP_H
39 #include FT_SERVICE_XFREE86_NAME_H
40 #include FT_SERVICE_GLYPH_DICT_H
43 /*************************************************************************/
45 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
46 /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */
47 /* messages during execution. */
50 #define FT_COMPONENT trace_cffdriver
53 /*************************************************************************/
54 /*************************************************************************/
55 /*************************************************************************/
61 /*************************************************************************/
62 /*************************************************************************/
63 /*************************************************************************/
67 #define PAIR_TAG( left, right ) ( ( (FT_ULong)left << 16 ) | \
71 /*************************************************************************/
77 /* A driver method used to return the kerning vector between two */
78 /* glyphs of the same face. */
81 /* face :: A handle to the source face object. */
83 /* left_glyph :: The index of the left glyph in the kern pair. */
85 /* right_glyph :: The index of the right glyph in the kern pair. */
88 /* kerning :: The kerning vector. This is in font units for */
89 /* scalable formats, and in pixels for fixed-sizes */
93 /* FreeType error code. 0 means success. */
96 /* Only horizontal layouts (left-to-right & right-to-left) are */
97 /* supported by this function. Other layouts, or more sophisticated */
98 /* kernings, are out of scope of this method (the basic driver */
99 /* interface is meant to be simple). */
101 /* They can be implemented by format-specific interfaces. */
103 FT_CALLBACK_DEF( FT_Error
)
104 cff_get_kerning( FT_Face ttface
, /* TT_Face */
109 TT_Face face
= (TT_Face
)ttface
;
110 SFNT_Service sfnt
= (SFNT_Service
)face
->sfnt
;
117 kerning
->x
= sfnt
->get_kerning( face
, left_glyph
, right_glyph
);
126 /*************************************************************************/
132 /* A driver method used to load a glyph within a given glyph slot. */
135 /* slot :: A handle to the target slot object where the glyph */
136 /* will be loaded. */
138 /* size :: A handle to the source face size at which the glyph */
139 /* must be scaled, loaded, etc. */
141 /* glyph_index :: The index of the glyph in the font file. */
143 /* load_flags :: A flag indicating what to load for this glyph. The */
144 /* FT_LOAD_??? constants can be used to control the */
145 /* glyph loading process (e.g., whether the outline */
146 /* should be scaled, whether to load bitmaps or not, */
147 /* whether to hint the outline, etc). */
150 /* FreeType error code. 0 means success. */
152 FT_CALLBACK_DEF( FT_Error
)
153 Load_Glyph( FT_GlyphSlot cffslot
, /* CFF_GlyphSlot */
154 FT_Size cffsize
, /* CFF_Size */
156 FT_Int32 load_flags
)
159 CFF_GlyphSlot slot
= (CFF_GlyphSlot
)cffslot
;
160 CFF_Size size
= (CFF_Size
)cffsize
;
164 return CFF_Err_Invalid_Slot_Handle
;
166 /* check whether we want a scaled outline or bitmap */
168 load_flags
|= FT_LOAD_NO_SCALE
| FT_LOAD_NO_HINTING
;
170 /* reset the size object if necessary */
171 if ( load_flags
& FT_LOAD_NO_SCALE
)
176 /* these two objects must have the same parent */
177 if ( cffsize
->face
!= cffslot
->face
)
178 return CFF_Err_Invalid_Face_Handle
;
181 /* now load the glyph outline if necessary */
182 error
= cff_slot_load( slot
, size
, glyph_index
, load_flags
);
184 /* force drop-out mode to 2 - irrelevant now */
185 /* slot->outline.dropout_mode = 2; */
191 FT_CALLBACK_DEF( FT_Error
)
192 cff_get_advances( FT_Face face
,
199 FT_Error error
= CFF_Err_Ok
;
200 FT_GlyphSlot slot
= face
->glyph
;
203 flags
|= (FT_UInt32
)FT_LOAD_ADVANCE_ONLY
;
205 for ( nn
= 0; nn
< count
; nn
++ )
207 error
= Load_Glyph( slot
, face
->size
, start
+ nn
, flags
);
211 advances
[nn
] = ( flags
& FT_LOAD_VERTICAL_LAYOUT
)
212 ? slot
->linearVertAdvance
213 : slot
->linearHoriAdvance
;
226 cff_get_glyph_name( CFF_Face face
,
231 CFF_Font font
= (CFF_Font
)face
->extra
.data
;
232 FT_Memory memory
= FT_FACE_MEMORY( face
);
235 FT_Service_PsCMaps psnames
;
239 FT_FACE_FIND_GLOBAL_SERVICE( face
, psnames
, POSTSCRIPT_CMAPS
);
242 FT_ERROR(( "cff_get_glyph_name:"
243 " cannot get glyph name from CFF & CEF fonts\n"
245 " without the `PSNames' module\n" ));
246 error
= CFF_Err_Unknown_File_Format
;
250 /* first, locate the sid in the charset table */
251 sid
= font
->charset
.sids
[glyph_index
];
253 /* now, lookup the name itself */
254 gname
= cff_index_get_sid_string( &font
->string_index
, sid
, psnames
);
257 FT_STRCPYN( buffer
, gname
, buffer_max
);
268 cff_get_name_index( CFF_Face face
,
269 FT_String
* glyph_name
)
273 FT_Service_PsCMaps psnames
;
274 FT_Memory memory
= FT_FACE_MEMORY( face
);
281 cff
= (CFF_FontRec
*)face
->extra
.data
;
282 charset
= &cff
->charset
;
284 FT_FACE_FIND_GLOBAL_SERVICE( face
, psnames
, POSTSCRIPT_CMAPS
);
288 for ( i
= 0; i
< cff
->num_glyphs
; i
++ )
290 sid
= charset
->sids
[i
];
293 name
= cff_index_get_name( &cff
->string_index
, sid
- 391 );
295 name
= (FT_String
*)psnames
->adobe_std_strings( sid
);
300 result
= ft_strcmp( glyph_name
, name
);
313 FT_DEFINE_SERVICE_GLYPHDICTREC(cff_service_glyph_dict
,
314 (FT_GlyphDict_GetNameFunc
) cff_get_glyph_name
,
315 (FT_GlyphDict_NameIndexFunc
)cff_get_name_index
320 * POSTSCRIPT INFO SERVICE
325 cff_ps_has_glyph_names( FT_Face face
)
327 return ( face
->face_flags
& FT_FACE_FLAG_GLYPH_NAMES
) > 0;
332 cff_ps_get_font_info( CFF_Face face
,
333 PS_FontInfoRec
* afont_info
)
335 CFF_Font cff
= (CFF_Font
)face
->extra
.data
;
336 FT_Error error
= FT_Err_Ok
;
339 if ( cff
&& cff
->font_info
== NULL
)
341 CFF_FontRecDict dict
= &cff
->top_font
.font_dict
;
342 PS_FontInfoRec
*font_info
;
343 FT_Memory memory
= face
->root
.memory
;
344 FT_Service_PsCMaps psnames
= (FT_Service_PsCMaps
)cff
->psnames
;
347 if ( FT_ALLOC( font_info
, sizeof ( *font_info
) ) )
350 font_info
->version
= cff_index_get_sid_string( &cff
->string_index
,
353 font_info
->notice
= cff_index_get_sid_string( &cff
->string_index
,
356 font_info
->full_name
= cff_index_get_sid_string( &cff
->string_index
,
359 font_info
->family_name
= cff_index_get_sid_string( &cff
->string_index
,
362 font_info
->weight
= cff_index_get_sid_string( &cff
->string_index
,
365 font_info
->italic_angle
= dict
->italic_angle
;
366 font_info
->is_fixed_pitch
= dict
->is_fixed_pitch
;
367 font_info
->underline_position
= (FT_Short
)dict
->underline_position
;
368 font_info
->underline_thickness
= (FT_Short
)dict
->underline_thickness
;
370 cff
->font_info
= font_info
;
374 *afont_info
= *cff
->font_info
;
381 FT_DEFINE_SERVICE_PSINFOREC(cff_service_ps_info
,
382 (PS_GetFontInfoFunc
) cff_ps_get_font_info
,
383 (PS_GetFontExtraFunc
) NULL
,
384 (PS_HasGlyphNamesFunc
) cff_ps_has_glyph_names
,
385 (PS_GetFontPrivateFunc
)NULL
/* unsupported with CFF fonts */
390 * POSTSCRIPT NAME SERVICE
395 cff_get_ps_name( CFF_Face face
)
397 CFF_Font cff
= (CFF_Font
)face
->extra
.data
;
400 return (const char*)cff
->font_name
;
404 FT_DEFINE_SERVICE_PSFONTNAMEREC(cff_service_ps_name
,
405 (FT_PsName_GetFunc
)cff_get_ps_name
412 * If the charmap is a synthetic Unicode encoding cmap or
413 * a Type 1 standard (or expert) encoding cmap, hide TT CMAP INFO
414 * service defined in SFNT module.
416 * Otherwise call the service function in the sfnt module.
420 cff_get_cmap_info( FT_CharMap charmap
,
421 TT_CMapInfo
*cmap_info
)
423 FT_CMap cmap
= FT_CMAP( charmap
);
424 FT_Error error
= CFF_Err_Ok
;
425 FT_Face face
= FT_CMAP_FACE( cmap
);
426 FT_Library library
= FT_FACE_LIBRARY( face
);
429 cmap_info
->language
= 0;
430 cmap_info
->format
= 0;
432 if ( cmap
->clazz
!= &FT_CFF_CMAP_ENCODING_CLASS_REC_GET
&&
433 cmap
->clazz
!= &FT_CFF_CMAP_UNICODE_CLASS_REC_GET
)
435 FT_Module sfnt
= FT_Get_Module( library
, "sfnt" );
436 FT_Service_TTCMaps service
=
437 (FT_Service_TTCMaps
)ft_module_get_service( sfnt
,
438 FT_SERVICE_ID_TT_CMAP
);
441 if ( service
&& service
->get_cmap_info
)
442 error
= service
->get_cmap_info( charmap
, cmap_info
);
449 FT_DEFINE_SERVICE_TTCMAPSREC(cff_service_get_cmap_info
,
450 (TT_CMap_Info_GetFunc
)cff_get_cmap_info
459 cff_get_ros( CFF_Face face
,
460 const char* *registry
,
461 const char* *ordering
,
464 FT_Error error
= CFF_Err_Ok
;
465 CFF_Font cff
= (CFF_Font
)face
->extra
.data
;
470 CFF_FontRecDict dict
= &cff
->top_font
.font_dict
;
471 FT_Service_PsCMaps psnames
= (FT_Service_PsCMaps
)cff
->psnames
;
474 if ( dict
->cid_registry
== 0xFFFFU
)
476 error
= CFF_Err_Invalid_Argument
;
482 if ( cff
->registry
== NULL
)
483 cff
->registry
= cff_index_get_sid_string( &cff
->string_index
,
486 *registry
= cff
->registry
;
491 if ( cff
->ordering
== NULL
)
492 cff
->ordering
= cff_index_get_sid_string( &cff
->string_index
,
495 *ordering
= cff
->ordering
;
499 * XXX: According to Adobe TechNote #5176, the supplement in CFF
500 * can be a real number. We truncate it to fit public API
501 * since freetype-2.3.6.
505 if ( dict
->cid_supplement
< FT_INT_MIN
||
506 dict
->cid_supplement
> FT_INT_MAX
)
507 FT_TRACE1(( "cff_get_ros: too large supplement %d is truncated\n",
508 dict
->cid_supplement
));
509 *supplement
= (FT_Int
)dict
->cid_supplement
;
519 cff_get_is_cid( CFF_Face face
,
522 FT_Error error
= CFF_Err_Ok
;
523 CFF_Font cff
= (CFF_Font
)face
->extra
.data
;
530 CFF_FontRecDict dict
= &cff
->top_font
.font_dict
;
533 if ( dict
->cid_registry
!= 0xFFFFU
)
542 cff_get_cid_from_glyph_index( CFF_Face face
,
546 FT_Error error
= CFF_Err_Ok
;
550 cff
= (CFF_Font
)face
->extra
.data
;
555 CFF_FontRecDict dict
= &cff
->top_font
.font_dict
;
558 if ( dict
->cid_registry
== 0xFFFFU
)
560 error
= CFF_Err_Invalid_Argument
;
564 if ( glyph_index
> cff
->num_glyphs
)
566 error
= CFF_Err_Invalid_Argument
;
570 c
= cff
->charset
.sids
[glyph_index
];
581 FT_DEFINE_SERVICE_CIDREC(cff_service_cid_info
,
582 (FT_CID_GetRegistryOrderingSupplementFunc
)cff_get_ros
,
583 (FT_CID_GetIsInternallyCIDKeyedFunc
) cff_get_is_cid
,
584 (FT_CID_GetCIDFromGlyphIndexFunc
) cff_get_cid_from_glyph_index
588 /*************************************************************************/
589 /*************************************************************************/
590 /*************************************************************************/
593 /**** D R I V E R I N T E R F A C E ****/
596 /*************************************************************************/
597 /*************************************************************************/
598 /*************************************************************************/
599 #ifndef FT_CONFIG_OPTION_NO_GLYPH_NAMES
600 FT_DEFINE_SERVICEDESCREC6(cff_services
,
601 FT_SERVICE_ID_XF86_NAME
, FT_XF86_FORMAT_CFF
,
602 FT_SERVICE_ID_POSTSCRIPT_INFO
, &FT_CFF_SERVICE_PS_INFO_GET
,
603 FT_SERVICE_ID_POSTSCRIPT_FONT_NAME
, &FT_CFF_SERVICE_PS_NAME_GET
,
604 FT_SERVICE_ID_GLYPH_DICT
, &FT_CFF_SERVICE_GLYPH_DICT_GET
,
605 FT_SERVICE_ID_TT_CMAP
, &FT_CFF_SERVICE_GET_CMAP_INFO_GET
,
606 FT_SERVICE_ID_CID
, &FT_CFF_SERVICE_CID_INFO_GET
609 FT_DEFINE_SERVICEDESCREC5(cff_services
,
610 FT_SERVICE_ID_XF86_NAME
, FT_XF86_FORMAT_CFF
,
611 FT_SERVICE_ID_POSTSCRIPT_INFO
, &FT_CFF_SERVICE_PS_INFO_GET
,
612 FT_SERVICE_ID_POSTSCRIPT_FONT_NAME
, &FT_CFF_SERVICE_PS_NAME_GET
,
613 FT_SERVICE_ID_TT_CMAP
, &FT_CFF_SERVICE_GET_CMAP_INFO_GET
,
614 FT_SERVICE_ID_CID
, &FT_CFF_SERVICE_CID_INFO_GET
618 FT_CALLBACK_DEF( FT_Module_Interface
)
619 cff_get_interface( FT_Module driver
, /* CFF_Driver */
620 const char* module_interface
)
623 FT_Module_Interface result
;
626 result
= ft_service_list_lookup( FT_CFF_SERVICES_GET
, module_interface
);
627 if ( result
!= NULL
)
633 /* we pass our request to the `sfnt' module */
634 sfnt
= FT_Get_Module( driver
->library
, "sfnt" );
636 return sfnt
? sfnt
->clazz
->get_interface( sfnt
, module_interface
) : 0;
640 /* The FT_DriverInterface structure is defined in ftdriver.h. */
642 #ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS
643 #define CFF_SIZE_SELECT cff_size_select
645 #define CFF_SIZE_SELECT 0
648 FT_DEFINE_DRIVER(cff_driver_class
,
649 FT_MODULE_FONT_DRIVER
|
650 FT_MODULE_DRIVER_SCALABLE
|
651 FT_MODULE_DRIVER_HAS_HINTER
,
653 sizeof( CFF_DriverRec
),
658 0, /* module-specific interface */
664 /* now the specific driver fields */
665 sizeof( TT_FaceRec
),
666 sizeof( CFF_SizeRec
),
667 sizeof( CFF_GlyphSlotRec
),
676 ft_stub_set_char_sizes
, /* FT_CONFIG_OPTION_OLD_INTERNALS */
677 ft_stub_set_pixel_sizes
, /* FT_CONFIG_OPTION_OLD_INTERNALS */
682 0, /* FT_Face_AttachFunc */
683 cff_get_advances
, /* FT_Face_GetAdvancesFunc */