Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / freetype2 / src / src / cff / cffobjs.c
1 /***************************************************************************/
2 /*                                                                         */
3 /*  cffobjs.c                                                              */
4 /*                                                                         */
5 /*    OpenType objects manager (body).                                     */
6 /*                                                                         */
7 /*  Copyright 1996-2011 by                                                 */
8 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
9 /*                                                                         */
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.                                        */
15 /*                                                                         */
16 /***************************************************************************/
17
18
19 #include <ft2build.h>
20 #include FT_INTERNAL_DEBUG_H
21 #include FT_INTERNAL_CALC_H
22 #include FT_INTERNAL_STREAM_H
23 #include FT_ERRORS_H
24 #include FT_TRUETYPE_IDS_H
25 #include FT_TRUETYPE_TAGS_H
26 #include FT_INTERNAL_SFNT_H
27 #include "cffobjs.h"
28 #include "cffload.h"
29 #include "cffcmap.h"
30 #include "cfferrs.h"
31 #include "cffpic.h"
32
33
34   /*************************************************************************/
35   /*                                                                       */
36   /* The macro FT_COMPONENT is used in trace mode.  It is an implicit      */
37   /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log  */
38   /* messages during execution.                                            */
39   /*                                                                       */
40 #undef  FT_COMPONENT
41 #define FT_COMPONENT  trace_cffobjs
42
43
44   /*************************************************************************/
45   /*                                                                       */
46   /*                            SIZE FUNCTIONS                             */
47   /*                                                                       */
48   /*  Note that we store the global hints in the size's `internal' root    */
49   /*  field.                                                               */
50   /*                                                                       */
51   /*************************************************************************/
52
53
54   static PSH_Globals_Funcs
55   cff_size_get_globals_funcs( CFF_Size  size )
56   {
57     CFF_Face          face     = (CFF_Face)size->root.face;
58     CFF_Font          font     = (CFF_Font)face->extra.data;
59     PSHinter_Service  pshinter = font->pshinter;
60     FT_Module         module;
61
62
63     module = FT_Get_Module( size->root.face->driver->root.library,
64                             "pshinter" );
65     return ( module && pshinter && pshinter->get_globals_funcs )
66            ? pshinter->get_globals_funcs( module )
67            : 0;
68   }
69
70
71   FT_LOCAL_DEF( void )
72   cff_size_done( FT_Size  cffsize )        /* CFF_Size */
73   {
74     CFF_Size      size     = (CFF_Size)cffsize;
75     CFF_Face      face     = (CFF_Face)size->root.face;
76     CFF_Font      font     = (CFF_Font)face->extra.data;
77     CFF_Internal  internal = (CFF_Internal)cffsize->internal;
78
79
80     if ( internal )
81     {
82       PSH_Globals_Funcs  funcs;
83
84
85       funcs = cff_size_get_globals_funcs( size );
86       if ( funcs )
87       {
88         FT_UInt  i;
89
90
91         funcs->destroy( internal->topfont );
92
93         for ( i = font->num_subfonts; i > 0; i-- )
94           funcs->destroy( internal->subfonts[i - 1] );
95       }
96
97       /* `internal' is freed by destroy_size (in ftobjs.c) */
98     }
99   }
100
101
102   /* CFF and Type 1 private dictionaries have slightly different      */
103   /* structures; we need to synthesize a Type 1 dictionary on the fly */
104
105   static void
106   cff_make_private_dict( CFF_SubFont  subfont,
107                          PS_Private   priv )
108   {
109     CFF_Private  cpriv = &subfont->private_dict;
110     FT_UInt      n, count;
111
112
113     FT_MEM_ZERO( priv, sizeof ( *priv ) );
114
115     count = priv->num_blue_values = cpriv->num_blue_values;
116     for ( n = 0; n < count; n++ )
117       priv->blue_values[n] = (FT_Short)cpriv->blue_values[n];
118
119     count = priv->num_other_blues = cpriv->num_other_blues;
120     for ( n = 0; n < count; n++ )
121       priv->other_blues[n] = (FT_Short)cpriv->other_blues[n];
122
123     count = priv->num_family_blues = cpriv->num_family_blues;
124     for ( n = 0; n < count; n++ )
125       priv->family_blues[n] = (FT_Short)cpriv->family_blues[n];
126
127     count = priv->num_family_other_blues = cpriv->num_family_other_blues;
128     for ( n = 0; n < count; n++ )
129       priv->family_other_blues[n] = (FT_Short)cpriv->family_other_blues[n];
130
131     priv->blue_scale = cpriv->blue_scale;
132     priv->blue_shift = (FT_Int)cpriv->blue_shift;
133     priv->blue_fuzz  = (FT_Int)cpriv->blue_fuzz;
134
135     priv->standard_width[0]  = (FT_UShort)cpriv->standard_width;
136     priv->standard_height[0] = (FT_UShort)cpriv->standard_height;
137
138     count = priv->num_snap_widths = cpriv->num_snap_widths;
139     for ( n = 0; n < count; n++ )
140       priv->snap_widths[n] = (FT_Short)cpriv->snap_widths[n];
141
142     count = priv->num_snap_heights = cpriv->num_snap_heights;
143     for ( n = 0; n < count; n++ )
144       priv->snap_heights[n] = (FT_Short)cpriv->snap_heights[n];
145
146     priv->force_bold     = cpriv->force_bold;
147     priv->language_group = cpriv->language_group;
148     priv->lenIV          = cpriv->lenIV;
149   }
150
151
152   FT_LOCAL_DEF( FT_Error )
153   cff_size_init( FT_Size  cffsize )         /* CFF_Size */
154   {
155     CFF_Size           size  = (CFF_Size)cffsize;
156     FT_Error           error = CFF_Err_Ok;
157     PSH_Globals_Funcs  funcs = cff_size_get_globals_funcs( size );
158
159
160     if ( funcs )
161     {
162       CFF_Face      face     = (CFF_Face)cffsize->face;
163       CFF_Font      font     = (CFF_Font)face->extra.data;
164       CFF_Internal  internal = NULL;
165
166       PS_PrivateRec  priv;
167       FT_Memory      memory = cffsize->face->memory;
168
169       FT_UInt  i;
170
171
172       if ( FT_NEW( internal ) )
173         goto Exit;
174
175       cff_make_private_dict( &font->top_font, &priv );
176       error = funcs->create( cffsize->face->memory, &priv,
177                              &internal->topfont );
178       if ( error )
179         goto Exit;
180
181       for ( i = font->num_subfonts; i > 0; i-- )
182       {
183         CFF_SubFont  sub = font->subfonts[i - 1];
184
185
186         cff_make_private_dict( sub, &priv );
187         error = funcs->create( cffsize->face->memory, &priv,
188                                &internal->subfonts[i - 1] );
189         if ( error )
190           goto Exit;
191       }
192
193       cffsize->internal = (FT_Size_Internal)(void*)internal;
194     }
195
196     size->strike_index = 0xFFFFFFFFUL;
197
198   Exit:
199     return error;
200   }
201
202
203 #ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS
204
205   FT_LOCAL_DEF( FT_Error )
206   cff_size_select( FT_Size   size,
207                    FT_ULong  strike_index )
208   {
209     CFF_Size           cffsize = (CFF_Size)size;
210     PSH_Globals_Funcs  funcs;
211
212
213     cffsize->strike_index = strike_index;
214
215     FT_Select_Metrics( size->face, strike_index );
216
217     funcs = cff_size_get_globals_funcs( cffsize );
218
219     if ( funcs )
220     {
221       CFF_Face      face     = (CFF_Face)size->face;
222       CFF_Font      font     = (CFF_Font)face->extra.data;
223       CFF_Internal  internal = (CFF_Internal)size->internal;
224
225       FT_ULong  top_upm  = font->top_font.font_dict.units_per_em;
226       FT_UInt   i;
227
228
229       funcs->set_scale( internal->topfont,
230                         size->metrics.x_scale, size->metrics.y_scale,
231                         0, 0 );
232
233       for ( i = font->num_subfonts; i > 0; i-- )
234       {
235         CFF_SubFont  sub     = font->subfonts[i - 1];
236         FT_ULong     sub_upm = sub->font_dict.units_per_em;
237         FT_Pos       x_scale, y_scale;
238
239
240         if ( top_upm != sub_upm )
241         {
242           x_scale = FT_MulDiv( size->metrics.x_scale, top_upm, sub_upm );
243           y_scale = FT_MulDiv( size->metrics.y_scale, top_upm, sub_upm );
244         }
245         else
246         {
247           x_scale = size->metrics.x_scale;
248           y_scale = size->metrics.y_scale;
249         }
250
251         funcs->set_scale( internal->subfonts[i - 1],
252                           x_scale, y_scale, 0, 0 );
253       }
254     }
255
256     return CFF_Err_Ok;
257   }
258
259 #endif /* TT_CONFIG_OPTION_EMBEDDED_BITMAPS */
260
261
262   FT_LOCAL_DEF( FT_Error )
263   cff_size_request( FT_Size          size,
264                     FT_Size_Request  req )
265   {
266     CFF_Size           cffsize = (CFF_Size)size;
267     PSH_Globals_Funcs  funcs;
268
269
270 #ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS
271
272     if ( FT_HAS_FIXED_SIZES( size->face ) )
273     {
274       CFF_Face      cffface = (CFF_Face)size->face;
275       SFNT_Service  sfnt    = (SFNT_Service)cffface->sfnt;
276       FT_ULong      strike_index;
277
278
279       if ( sfnt->set_sbit_strike( cffface, req, &strike_index ) )
280         cffsize->strike_index = 0xFFFFFFFFUL;
281       else
282         return cff_size_select( size, strike_index );
283     }
284
285 #endif /* TT_CONFIG_OPTION_EMBEDDED_BITMAPS */
286
287     FT_Request_Metrics( size->face, req );
288
289     funcs = cff_size_get_globals_funcs( cffsize );
290
291     if ( funcs )
292     {
293       CFF_Face      cffface  = (CFF_Face)size->face;
294       CFF_Font      font     = (CFF_Font)cffface->extra.data;
295       CFF_Internal  internal = (CFF_Internal)size->internal;
296
297       FT_ULong  top_upm  = font->top_font.font_dict.units_per_em;
298       FT_UInt   i;
299
300
301       funcs->set_scale( internal->topfont,
302                         size->metrics.x_scale, size->metrics.y_scale,
303                         0, 0 );
304
305       for ( i = font->num_subfonts; i > 0; i-- )
306       {
307         CFF_SubFont  sub     = font->subfonts[i - 1];
308         FT_ULong     sub_upm = sub->font_dict.units_per_em;
309         FT_Pos       x_scale, y_scale;
310
311
312         if ( top_upm != sub_upm )
313         {
314           x_scale = FT_MulDiv( size->metrics.x_scale, top_upm, sub_upm );
315           y_scale = FT_MulDiv( size->metrics.y_scale, top_upm, sub_upm );
316         }
317         else
318         {
319           x_scale = size->metrics.x_scale;
320           y_scale = size->metrics.y_scale;
321         }
322
323         funcs->set_scale( internal->subfonts[i - 1],
324                           x_scale, y_scale, 0, 0 );
325       }
326     }
327
328     return CFF_Err_Ok;
329   }
330
331
332   /*************************************************************************/
333   /*                                                                       */
334   /*                            SLOT  FUNCTIONS                            */
335   /*                                                                       */
336   /*************************************************************************/
337
338   FT_LOCAL_DEF( void )
339   cff_slot_done( FT_GlyphSlot  slot )
340   {
341     slot->internal->glyph_hints = 0;
342   }
343
344
345   FT_LOCAL_DEF( FT_Error )
346   cff_slot_init( FT_GlyphSlot  slot )
347   {
348     CFF_Face          face     = (CFF_Face)slot->face;
349     CFF_Font          font     = (CFF_Font)face->extra.data;
350     PSHinter_Service  pshinter = font->pshinter;
351
352
353     if ( pshinter )
354     {
355       FT_Module  module;
356
357
358       module = FT_Get_Module( slot->face->driver->root.library,
359                               "pshinter" );
360       if ( module )
361       {
362         T2_Hints_Funcs  funcs;
363
364
365         funcs = pshinter->get_t2_funcs( module );
366         slot->internal->glyph_hints = (void*)funcs;
367       }
368     }
369
370     return CFF_Err_Ok;
371   }
372
373
374   /*************************************************************************/
375   /*                                                                       */
376   /*                           FACE  FUNCTIONS                             */
377   /*                                                                       */
378   /*************************************************************************/
379
380   static FT_String*
381   cff_strcpy( FT_Memory         memory,
382               const FT_String*  source )
383   {
384     FT_Error    error;
385     FT_String*  result;
386
387
388     (void)FT_STRDUP( result, source );
389
390     FT_UNUSED( error );
391
392     return result;
393   }
394
395
396   /* Strip all subset prefixes of the form `ABCDEF+'.  Usually, there */
397   /* is only one, but font names like `APCOOG+JFABTD+FuturaBQ-Bold'   */
398   /* have been seen in the wild.                                      */
399
400   static void
401   remove_subset_prefix( FT_String*  name )
402   {
403     FT_Int32  idx             = 0;
404     FT_Int32  length          = strlen( name ) + 1;
405     FT_Bool   continue_search = 1;
406  
407
408     while ( continue_search )
409     {
410       if ( length >= 7 && name[6] == '+' )
411       {
412         for ( idx = 0; idx < 6; idx++ )
413         {
414           /* ASCII uppercase letters */
415           if ( !( 'A' <= name[idx] && name[idx] <= 'Z' ) )
416             continue_search = 0;
417         }
418
419         if ( continue_search )
420         {
421           for ( idx = 7; idx < length; idx++ )
422             name[idx - 7] = name[idx];
423           length -= 7;
424         }
425       }
426       else
427         continue_search = 0;
428     }
429   }
430
431
432   /* Remove the style part from the family name (if present). */
433
434   static void
435   remove_style( FT_String*        family_name,
436                 const FT_String*  style_name )
437   {
438     FT_Int32  family_name_length, style_name_length;
439
440
441     family_name_length = strlen( family_name );
442     style_name_length  = strlen( style_name );
443
444     if ( family_name_length > style_name_length )
445     {
446       FT_Int  idx;
447
448
449       for ( idx = 1; idx <= style_name_length; ++idx )
450       {
451         if ( family_name[family_name_length - idx] !=
452              style_name[style_name_length - idx] )
453           break;
454       }
455
456       if ( idx > style_name_length )
457       {
458         /* family_name ends with style_name; remove it */
459         idx = family_name_length - style_name_length - 1;
460
461         /* also remove special characters     */
462         /* between real family name and style */
463         while ( idx > 0                     &&
464                 ( family_name[idx] == '-' ||
465                   family_name[idx] == ' ' ||
466                   family_name[idx] == '_' ||
467                   family_name[idx] == '+' ) )
468           --idx;
469
470         if ( idx > 0 )
471           family_name[idx + 1] = '\0';
472       }
473     }
474   }
475
476
477   FT_LOCAL_DEF( FT_Error )
478   cff_face_init( FT_Stream      stream,
479                  FT_Face        cffface,        /* CFF_Face */
480                  FT_Int         face_index,
481                  FT_Int         num_params,
482                  FT_Parameter*  params )
483   {
484     CFF_Face            face        = (CFF_Face)cffface;
485     FT_Error            error;
486     SFNT_Service        sfnt;
487     FT_Service_PsCMaps  psnames;
488     PSHinter_Service    pshinter;
489     FT_Bool             pure_cff    = 1;
490     FT_Bool             sfnt_format = 0;
491     FT_Library          library     = cffface->driver->root.library;
492
493
494     sfnt = (SFNT_Service)FT_Get_Module_Interface(
495              library, "sfnt" );
496     if ( !sfnt )
497       goto Bad_Format;
498
499     FT_FACE_FIND_GLOBAL_SERVICE( face, psnames, POSTSCRIPT_CMAPS );
500
501     pshinter = (PSHinter_Service)FT_Get_Module_Interface(
502                  library, "pshinter" );
503
504     /* create input stream from resource */
505     if ( FT_STREAM_SEEK( 0 ) )
506       goto Exit;
507
508     /* check whether we have a valid OpenType file */
509     error = sfnt->init_face( stream, face, face_index, num_params, params );
510     if ( !error )
511     {
512       if ( face->format_tag != TTAG_OTTO )  /* `OTTO'; OpenType/CFF font */
513       {
514         FT_TRACE2(( "[not a valid OpenType/CFF font]\n" ));
515         goto Bad_Format;
516       }
517
518       /* if we are performing a simple font format check, exit immediately */
519       if ( face_index < 0 )
520         return CFF_Err_Ok;
521
522       /* UNDOCUMENTED!  A CFF in an SFNT can have only a single font. */
523       if ( face_index > 0 )
524       {
525         FT_ERROR(( "cff_face_init: invalid face index\n" ));
526         error = CFF_Err_Invalid_Argument;
527         goto Exit;
528       }
529
530       sfnt_format = 1;
531
532       /* now, the font can be either an OpenType/CFF font, or an SVG CEF */
533       /* font; in the latter case it doesn't have a `head' table         */
534       error = face->goto_table( face, TTAG_head, stream, 0 );
535       if ( !error )
536       {
537         pure_cff = 0;
538
539         /* load font directory */
540         error = sfnt->load_face( stream, face, 0, num_params, params );
541         if ( error )
542           goto Exit;
543       }
544       else
545       {
546         /* load the `cmap' table explicitly */
547         error = sfnt->load_cmap( face, stream );
548         if ( error )
549           goto Exit;
550
551         /* XXX: we don't load the GPOS table, as OpenType Layout     */
552         /* support will be added later to a layout library on top of */
553         /* FreeType 2                                                */
554       }
555
556       /* now load the CFF part of the file */
557       error = face->goto_table( face, TTAG_CFF, stream, 0 );
558       if ( error )
559         goto Exit;
560     }
561     else
562     {
563       /* rewind to start of file; we are going to load a pure-CFF font */
564       if ( FT_STREAM_SEEK( 0 ) )
565         goto Exit;
566       error = CFF_Err_Ok;
567     }
568
569     /* now load and parse the CFF table in the file */
570     {
571       CFF_Font         cff = NULL;
572       CFF_FontRecDict  dict;
573       FT_Memory        memory = cffface->memory;
574       FT_Int32         flags;
575       FT_UInt          i;
576
577
578       if ( FT_NEW( cff ) )
579         goto Exit;
580
581       face->extra.data = cff;
582       error = cff_font_load( library, stream, face_index, cff, pure_cff );
583       if ( error )
584         goto Exit;
585
586       cff->pshinter = pshinter;
587       cff->psnames  = psnames;
588
589       cffface->face_index = face_index;
590
591       /* Complement the root flags with some interesting information. */
592       /* Note that this is only necessary for pure CFF and CEF fonts; */
593       /* SFNT based fonts use the `name' table instead.               */
594
595       cffface->num_glyphs = cff->num_glyphs;
596
597       dict = &cff->top_font.font_dict;
598
599       /* we need the `PSNames' module for CFF and CEF formats */
600       /* which aren't CID-keyed                               */
601       if ( dict->cid_registry == 0xFFFFU && !psnames )
602       {
603         FT_ERROR(( "cff_face_init:"
604                    " cannot open CFF & CEF fonts\n"
605                    "              "
606                    " without the `PSNames' module\n" ));
607         goto Bad_Format;
608       }
609
610 #ifdef FT_DEBUG_LEVEL_TRACE
611       {
612         FT_UInt     idx;
613         FT_String*  s;
614
615
616         FT_TRACE4(( "SIDs\n" ));
617
618         /* dump string index, including default strings for convenience */
619         for ( idx = 0; idx < cff->num_strings + 390; idx++ )
620         {
621           s = cff_index_get_sid_string( cff, idx );
622           if ( s )
623             FT_TRACE4(("  %5d %s\n", idx, s ));
624         }
625       }
626 #endif /* FT_DEBUG_LEVEL_TRACE */
627
628       if ( !dict->has_font_matrix )
629         dict->units_per_em = pure_cff ? 1000 : face->root.units_per_EM;
630
631       /* Normalize the font matrix so that `matrix->xx' is 1; the */
632       /* scaling is done with `units_per_em' then (at this point, */
633       /* it already contains the scaling factor, but without      */
634       /* normalization of the matrix).                            */
635       /*                                                          */
636       /* Note that the offsets must be expressed in integer font  */
637       /* units.                                                   */
638
639       {
640         FT_Matrix*  matrix = &dict->font_matrix;
641         FT_Vector*  offset = &dict->font_offset;
642         FT_ULong*   upm    = &dict->units_per_em;
643         FT_Fixed    temp   = FT_ABS( matrix->yy );
644
645
646         if ( temp != 0x10000L )
647         {
648           *upm = FT_DivFix( *upm, temp );
649
650           matrix->xx = FT_DivFix( matrix->xx, temp );
651           matrix->yx = FT_DivFix( matrix->yx, temp );
652           matrix->xy = FT_DivFix( matrix->xy, temp );
653           matrix->yy = FT_DivFix( matrix->yy, temp );
654           offset->x  = FT_DivFix( offset->x,  temp );
655           offset->y  = FT_DivFix( offset->y,  temp );
656         }
657
658         offset->x >>= 16;
659         offset->y >>= 16;
660       }
661
662       for ( i = cff->num_subfonts; i > 0; i-- )
663       {
664         CFF_FontRecDict  sub = &cff->subfonts[i - 1]->font_dict;
665         CFF_FontRecDict  top = &cff->top_font.font_dict;
666
667         FT_Matrix*  matrix;
668         FT_Vector*  offset;
669         FT_ULong*   upm;
670         FT_Fixed    temp;
671
672
673         if ( sub->has_font_matrix )
674         {
675           FT_Long  scaling;
676
677
678           /* if we have a top-level matrix, */
679           /* concatenate the subfont matrix */
680
681           if ( top->has_font_matrix )
682           {
683             if ( top->units_per_em > 1 && sub->units_per_em > 1 )
684               scaling = FT_MIN( top->units_per_em, sub->units_per_em );
685             else
686               scaling = 1;
687
688             FT_Matrix_Multiply_Scaled( &top->font_matrix,
689                                        &sub->font_matrix,
690                                        scaling );
691             FT_Vector_Transform_Scaled( &sub->font_offset,
692                                         &top->font_matrix,
693                                         scaling );
694
695             sub->units_per_em = FT_MulDiv( sub->units_per_em,
696                                            top->units_per_em,
697                                            scaling );
698           }
699         }
700         else
701         {
702           sub->font_matrix = top->font_matrix;
703           sub->font_offset = top->font_offset;
704
705           sub->units_per_em = top->units_per_em;
706         }
707
708         matrix = &sub->font_matrix;
709         offset = &sub->font_offset;
710         upm    = &sub->units_per_em;
711         temp   = FT_ABS( matrix->yy );
712
713         if ( temp != 0x10000L )
714         {
715           *upm = FT_DivFix( *upm, temp );
716
717           matrix->xx = FT_DivFix( matrix->xx, temp );
718           matrix->yx = FT_DivFix( matrix->yx, temp );
719           matrix->xy = FT_DivFix( matrix->xy, temp );
720           matrix->yy = FT_DivFix( matrix->yy, temp );
721           offset->x  = FT_DivFix( offset->x,  temp );
722           offset->y  = FT_DivFix( offset->y,  temp );
723         }
724
725         offset->x >>= 16;
726         offset->y >>= 16;
727       }
728
729       if ( pure_cff )
730       {
731         char*  style_name = NULL;
732
733
734         /* set up num_faces */
735         cffface->num_faces = cff->num_faces;
736
737         /* compute number of glyphs */
738         if ( dict->cid_registry != 0xFFFFU )
739           cffface->num_glyphs = cff->charset.max_cid + 1;
740         else
741           cffface->num_glyphs = cff->charstrings_index.count;
742
743         /* set global bbox, as well as EM size */
744         cffface->bbox.xMin =   dict->font_bbox.xMin            >> 16;
745         cffface->bbox.yMin =   dict->font_bbox.yMin            >> 16;
746         /* no `U' suffix here to 0xFFFF! */
747         cffface->bbox.xMax = ( dict->font_bbox.xMax + 0xFFFF ) >> 16;
748         cffface->bbox.yMax = ( dict->font_bbox.yMax + 0xFFFF ) >> 16;
749
750         cffface->units_per_EM = (FT_UShort)( dict->units_per_em );
751
752         cffface->ascender  = (FT_Short)( cffface->bbox.yMax );
753         cffface->descender = (FT_Short)( cffface->bbox.yMin );
754
755         cffface->height = (FT_Short)( ( cffface->units_per_EM * 12 ) / 10 );
756         if ( cffface->height < cffface->ascender - cffface->descender )
757           cffface->height = (FT_Short)( cffface->ascender - cffface->descender );
758
759         cffface->underline_position  =
760           (FT_Short)( dict->underline_position >> 16 );
761         cffface->underline_thickness =
762           (FT_Short)( dict->underline_thickness >> 16 );
763
764         /* retrieve font family & style name */
765         cffface->family_name = cff_index_get_name( cff, face_index );
766         if ( cffface->family_name )
767         {
768           char*  full   = cff_index_get_sid_string( cff,
769                                                     dict->full_name );
770           char*  fullp  = full;
771           char*  family = cffface->family_name;
772           char*  family_name = NULL;
773
774
775           remove_subset_prefix( cffface->family_name ); 
776
777           if ( dict->family_name )
778           {
779             family_name = cff_index_get_sid_string( cff,
780                                                     dict->family_name );
781             if ( family_name )
782               family = family_name;
783           }
784
785           /* We try to extract the style name from the full name.   */
786           /* We need to ignore spaces and dashes during the search. */
787           if ( full && family )
788           {
789             while ( *fullp )
790             {
791               /* skip common characters at the start of both strings */
792               if ( *fullp == *family )
793               {
794                 family++;
795                 fullp++;
796                 continue;
797               }
798
799               /* ignore spaces and dashes in full name during comparison */
800               if ( *fullp == ' ' || *fullp == '-' )
801               {
802                 fullp++;
803                 continue;
804               }
805
806               /* ignore spaces and dashes in family name during comparison */
807               if ( *family == ' ' || *family == '-' )
808               {
809                 family++;
810                 continue;
811               }
812
813               if ( !*family && *fullp )
814               {
815                 /* The full name begins with the same characters as the  */
816                 /* family name, with spaces and dashes removed.  In this */
817                 /* case, the remaining string in `fullp' will be used as */
818                 /* the style name.                                       */
819                 style_name = cff_strcpy( memory, fullp );
820
821                 /* remove the style part from the family name (if present) */
822                 remove_style( cffface->family_name, style_name ); 
823               }
824               break;
825             }
826           }
827         }
828         else
829         {
830           char  *cid_font_name =
831                    cff_index_get_sid_string( cff,
832                                              dict->cid_font_name );
833
834
835           /* do we have a `/FontName' for a CID-keyed font? */
836           if ( cid_font_name )
837             cffface->family_name = cff_strcpy( memory, cid_font_name );
838         }
839
840         if ( style_name )
841           cffface->style_name = style_name;
842         else
843           /* assume "Regular" style if we don't know better */
844           cffface->style_name = cff_strcpy( memory, (char *)"Regular" );
845
846         /*******************************************************************/
847         /*                                                                 */
848         /* Compute face flags.                                             */
849         /*                                                                 */
850         flags = (FT_UInt32)( FT_FACE_FLAG_SCALABLE   | /* scalable outlines */
851                              FT_FACE_FLAG_HORIZONTAL | /* horizontal data   */
852                              FT_FACE_FLAG_HINTER );    /* has native hinter */
853
854         if ( sfnt_format )
855           flags |= (FT_UInt32)FT_FACE_FLAG_SFNT;
856
857         /* fixed width font? */
858         if ( dict->is_fixed_pitch )
859           flags |= (FT_UInt32)FT_FACE_FLAG_FIXED_WIDTH;
860
861   /* XXX: WE DO NOT SUPPORT KERNING METRICS IN THE GPOS TABLE FOR NOW */
862 #if 0
863         /* kerning available? */
864         if ( face->kern_pairs )
865           flags |= (FT_UInt32)FT_FACE_FLAG_KERNING;
866 #endif
867
868         cffface->face_flags = flags;
869
870         /*******************************************************************/
871         /*                                                                 */
872         /* Compute style flags.                                            */
873         /*                                                                 */
874         flags = 0;
875
876         if ( dict->italic_angle )
877           flags |= FT_STYLE_FLAG_ITALIC;
878
879         {
880           char  *weight = cff_index_get_sid_string( cff,
881                                                     dict->weight );
882
883
884           if ( weight )
885             if ( !ft_strcmp( weight, "Bold"  ) ||
886                  !ft_strcmp( weight, "Black" ) )
887               flags |= FT_STYLE_FLAG_BOLD;
888         }
889
890         /* double check */
891         if ( !(flags & FT_STYLE_FLAG_BOLD) && cffface->style_name )
892           if ( !ft_strncmp( cffface->style_name, "Bold", 4 )  ||
893                !ft_strncmp( cffface->style_name, "Black", 5 ) )
894             flags |= FT_STYLE_FLAG_BOLD;
895
896         cffface->style_flags = flags;
897       }
898
899
900 #ifndef FT_CONFIG_OPTION_NO_GLYPH_NAMES
901       /* CID-keyed CFF fonts don't have glyph names -- the SFNT loader */
902       /* has unset this flag because of the 3.0 `post' table.          */
903       if ( dict->cid_registry == 0xFFFFU )
904         cffface->face_flags |= FT_FACE_FLAG_GLYPH_NAMES;
905 #endif
906
907       if ( dict->cid_registry != 0xFFFFU && pure_cff )
908         cffface->face_flags |= FT_FACE_FLAG_CID_KEYED;
909
910
911       /*******************************************************************/
912       /*                                                                 */
913       /* Compute char maps.                                              */
914       /*                                                                 */
915
916       /* Try to synthesize a Unicode charmap if there is none available */
917       /* already.  If an OpenType font contains a Unicode "cmap", we    */
918       /* will use it, whatever be in the CFF part of the file.          */
919       {
920         FT_CharMapRec  cmaprec;
921         FT_CharMap     cmap;
922         FT_UInt        nn;
923         CFF_Encoding   encoding = &cff->encoding;
924
925
926         for ( nn = 0; nn < (FT_UInt)cffface->num_charmaps; nn++ )
927         {
928           cmap = cffface->charmaps[nn];
929
930           /* Windows Unicode? */
931           if ( cmap->platform_id == TT_PLATFORM_MICROSOFT &&
932                cmap->encoding_id == TT_MS_ID_UNICODE_CS   )
933             goto Skip_Unicode;
934
935           /* Apple Unicode platform id? */
936           if ( cmap->platform_id == TT_PLATFORM_APPLE_UNICODE )
937             goto Skip_Unicode; /* Apple Unicode */
938         }
939
940         /* since CID-keyed fonts don't contain glyph names, we can't */
941         /* construct a cmap                                          */
942         if ( pure_cff && cff->top_font.font_dict.cid_registry != 0xFFFFU )
943           goto Exit;
944
945 #ifdef FT_MAX_CHARMAP_CACHEABLE
946         if ( nn + 1 > FT_MAX_CHARMAP_CACHEABLE )
947         {
948           FT_ERROR(( "cff_face_init: no Unicode cmap is found, "
949                      "and too many subtables (%d) to add synthesized cmap\n",
950                      nn ));
951           goto Exit;
952         }
953 #endif
954
955         /* we didn't find a Unicode charmap -- synthesize one */
956         cmaprec.face        = cffface;
957         cmaprec.platform_id = TT_PLATFORM_MICROSOFT;
958         cmaprec.encoding_id = TT_MS_ID_UNICODE_CS;
959         cmaprec.encoding    = FT_ENCODING_UNICODE;
960
961         nn = (FT_UInt)cffface->num_charmaps;
962
963         error = FT_CMap_New( &FT_CFF_CMAP_UNICODE_CLASS_REC_GET, NULL,
964                              &cmaprec, NULL );
965         if ( error && FT_Err_No_Unicode_Glyph_Name != error )
966           goto Exit;
967         error = FT_Err_Ok;
968
969         /* if no Unicode charmap was previously selected, select this one */
970         if ( cffface->charmap == NULL && nn != (FT_UInt)cffface->num_charmaps )
971           cffface->charmap = cffface->charmaps[nn];
972
973       Skip_Unicode:
974 #ifdef FT_MAX_CHARMAP_CACHEABLE
975         if ( nn > FT_MAX_CHARMAP_CACHEABLE )
976         {
977           FT_ERROR(( "cff_face_init: Unicode cmap is found, "
978                      "but too many preceding subtables (%d) to access\n",
979                      nn - 1 ));
980           goto Exit;
981         }
982 #endif
983         if ( encoding->count > 0 )
984         {
985           FT_CMap_Class  clazz;
986
987
988           cmaprec.face        = cffface;
989           cmaprec.platform_id = TT_PLATFORM_ADOBE;  /* Adobe platform id */
990
991           if ( encoding->offset == 0 )
992           {
993             cmaprec.encoding_id = TT_ADOBE_ID_STANDARD;
994             cmaprec.encoding    = FT_ENCODING_ADOBE_STANDARD;
995             clazz               = &FT_CFF_CMAP_ENCODING_CLASS_REC_GET;
996           }
997           else if ( encoding->offset == 1 )
998           {
999             cmaprec.encoding_id = TT_ADOBE_ID_EXPERT;
1000             cmaprec.encoding    = FT_ENCODING_ADOBE_EXPERT;
1001             clazz               = &FT_CFF_CMAP_ENCODING_CLASS_REC_GET;
1002           }
1003           else
1004           {
1005             cmaprec.encoding_id = TT_ADOBE_ID_CUSTOM;
1006             cmaprec.encoding    = FT_ENCODING_ADOBE_CUSTOM;
1007             clazz               = &FT_CFF_CMAP_ENCODING_CLASS_REC_GET;
1008           }
1009
1010           error = FT_CMap_New( clazz, NULL, &cmaprec, NULL );
1011         }
1012       }
1013     }
1014
1015   Exit:
1016     return error;
1017
1018   Bad_Format:
1019     error = CFF_Err_Unknown_File_Format;
1020     goto Exit;
1021   }
1022
1023
1024   FT_LOCAL_DEF( void )
1025   cff_face_done( FT_Face  cffface )         /* CFF_Face */
1026   {
1027     CFF_Face      face = (CFF_Face)cffface;
1028     FT_Memory     memory;
1029     SFNT_Service  sfnt;
1030
1031
1032     if ( !face )
1033       return;
1034
1035     memory = cffface->memory;
1036     sfnt   = (SFNT_Service)face->sfnt;
1037
1038     if ( sfnt )
1039       sfnt->done_face( face );
1040
1041     {
1042       CFF_Font  cff = (CFF_Font)face->extra.data;
1043
1044
1045       if ( cff )
1046       {
1047         cff_font_done( cff );
1048         FT_FREE( face->extra.data );
1049       }
1050     }
1051   }
1052
1053
1054   FT_LOCAL_DEF( FT_Error )
1055   cff_driver_init( FT_Module  module )
1056   {
1057     FT_UNUSED( module );
1058
1059     return CFF_Err_Ok;
1060   }
1061
1062
1063   FT_LOCAL_DEF( void )
1064   cff_driver_done( FT_Module  module )
1065   {
1066     FT_UNUSED( module );
1067   }
1068
1069
1070 /* END */