]> rtime.felk.cvut.cz Git - hornmich/skoda-qr-demo.git/blob - QRScanner/mobile/jni/thirdparty/freetype/src/cff/cffobjs.c
Add MuPDF native source codes
[hornmich/skoda-qr-demo.git] / QRScanner / mobile / jni / thirdparty / freetype / src / cff / cffobjs.c
1 /***************************************************************************/
2 /*                                                                         */
3 /*  cffobjs.c                                                              */
4 /*                                                                         */
5 /*    OpenType objects manager (body).                                     */
6 /*                                                                         */
7 /*  Copyright 1996-2012 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     {
498       FT_ERROR(( "cff_face_init: cannot access `sfnt' module\n" ));
499       error = CFF_Err_Missing_Module;
500       goto Exit;
501     }
502
503     FT_FACE_FIND_GLOBAL_SERVICE( face, psnames, POSTSCRIPT_CMAPS );
504
505     pshinter = (PSHinter_Service)FT_Get_Module_Interface(
506                  library, "pshinter" );
507
508     FT_TRACE2(( "CFF driver\n" ));
509
510     /* create input stream from resource */
511     if ( FT_STREAM_SEEK( 0 ) )
512       goto Exit;
513
514     /* check whether we have a valid OpenType file */
515     error = sfnt->init_face( stream, face, face_index, num_params, params );
516     if ( !error )
517     {
518       if ( face->format_tag != TTAG_OTTO )  /* `OTTO'; OpenType/CFF font */
519       {
520         FT_TRACE2(( "  not an OpenType/CFF font\n" ));
521         error = CFF_Err_Unknown_File_Format;
522         goto Exit;
523       }
524
525       /* if we are performing a simple font format check, exit immediately */
526       if ( face_index < 0 )
527         return CFF_Err_Ok;
528
529       sfnt_format = 1;
530
531       /* now, the font can be either an OpenType/CFF font, or an SVG CEF */
532       /* font; in the latter case it doesn't have a `head' table         */
533       error = face->goto_table( face, TTAG_head, stream, 0 );
534       if ( !error )
535       {
536         pure_cff = 0;
537
538         /* load font directory */
539         error = sfnt->load_face( stream, face, face_index,
540                                  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
552       /* now load the CFF part of the file */
553       error = face->goto_table( face, TTAG_CFF, stream, 0 );
554       if ( error )
555         goto Exit;
556     }
557     else
558     {
559       /* rewind to start of file; we are going to load a pure-CFF font */
560       if ( FT_STREAM_SEEK( 0 ) )
561         goto Exit;
562       error = CFF_Err_Ok;
563     }
564
565     /* now load and parse the CFF table in the file */
566     {
567       CFF_Font         cff = NULL;
568       CFF_FontRecDict  dict;
569       FT_Memory        memory = cffface->memory;
570       FT_Int32         flags;
571       FT_UInt          i;
572
573
574       if ( FT_NEW( cff ) )
575         goto Exit;
576
577       face->extra.data = cff;
578       error = cff_font_load( library, stream, face_index, cff, pure_cff );
579       if ( error )
580         goto Exit;
581
582       cff->pshinter = pshinter;
583       cff->psnames  = psnames;
584
585       cffface->face_index = face_index;
586
587       /* Complement the root flags with some interesting information. */
588       /* Note that this is only necessary for pure CFF and CEF fonts; */
589       /* SFNT based fonts use the `name' table instead.               */
590
591       cffface->num_glyphs = cff->num_glyphs;
592
593       dict = &cff->top_font.font_dict;
594
595       /* we need the `PSNames' module for CFF and CEF formats */
596       /* which aren't CID-keyed                               */
597       if ( dict->cid_registry == 0xFFFFU && !psnames )
598       {
599         FT_ERROR(( "cff_face_init:"
600                    " cannot open CFF & CEF fonts\n"
601                    "              "
602                    " without the `PSNames' module\n" ));
603         error = CFF_Err_Missing_Module;
604         goto Exit;
605       }
606
607 #ifdef FT_DEBUG_LEVEL_TRACE
608       {
609         FT_UInt     idx;
610         FT_String*  s;
611
612
613         FT_TRACE4(( "SIDs\n" ));
614
615         /* dump string index, including default strings for convenience */
616         for ( idx = 0; idx < cff->num_strings + 390; idx++ )
617         {
618           s = cff_index_get_sid_string( cff, idx );
619           if ( s )
620             FT_TRACE4(("  %5d %s\n", idx, s ));
621         }
622       }
623 #endif /* FT_DEBUG_LEVEL_TRACE */
624
625       if ( !dict->has_font_matrix )
626         dict->units_per_em = pure_cff ? 1000 : face->root.units_per_EM;
627
628       /* Normalize the font matrix so that `matrix->xx' is 1; the */
629       /* scaling is done with `units_per_em' then (at this point, */
630       /* it already contains the scaling factor, but without      */
631       /* normalization of the matrix).                            */
632       /*                                                          */
633       /* Note that the offsets must be expressed in integer font  */
634       /* units.                                                   */
635
636       {
637         FT_Matrix*  matrix = &dict->font_matrix;
638         FT_Vector*  offset = &dict->font_offset;
639         FT_ULong*   upm    = &dict->units_per_em;
640         FT_Fixed    temp   = FT_ABS( matrix->yy );
641
642
643         if ( temp != 0x10000L )
644         {
645           *upm = FT_DivFix( *upm, temp );
646
647           matrix->xx = FT_DivFix( matrix->xx, temp );
648           matrix->yx = FT_DivFix( matrix->yx, temp );
649           matrix->xy = FT_DivFix( matrix->xy, temp );
650           matrix->yy = FT_DivFix( matrix->yy, temp );
651           offset->x  = FT_DivFix( offset->x,  temp );
652           offset->y  = FT_DivFix( offset->y,  temp );
653         }
654
655         offset->x >>= 16;
656         offset->y >>= 16;
657       }
658
659       for ( i = cff->num_subfonts; i > 0; i-- )
660       {
661         CFF_FontRecDict  sub = &cff->subfonts[i - 1]->font_dict;
662         CFF_FontRecDict  top = &cff->top_font.font_dict;
663
664         FT_Matrix*  matrix;
665         FT_Vector*  offset;
666         FT_ULong*   upm;
667         FT_Fixed    temp;
668
669
670         if ( sub->has_font_matrix )
671         {
672           FT_Long  scaling;
673
674
675           /* if we have a top-level matrix, */
676           /* concatenate the subfont matrix */
677
678           if ( top->has_font_matrix )
679           {
680             if ( top->units_per_em > 1 && sub->units_per_em > 1 )
681               scaling = FT_MIN( top->units_per_em, sub->units_per_em );
682             else
683               scaling = 1;
684
685             FT_Matrix_Multiply_Scaled( &top->font_matrix,
686                                        &sub->font_matrix,
687                                        scaling );
688             FT_Vector_Transform_Scaled( &sub->font_offset,
689                                         &top->font_matrix,
690                                         scaling );
691
692             sub->units_per_em = FT_MulDiv( sub->units_per_em,
693                                            top->units_per_em,
694                                            scaling );
695           }
696         }
697         else
698         {
699           sub->font_matrix = top->font_matrix;
700           sub->font_offset = top->font_offset;
701
702           sub->units_per_em = top->units_per_em;
703         }
704
705         matrix = &sub->font_matrix;
706         offset = &sub->font_offset;
707         upm    = &sub->units_per_em;
708         temp   = FT_ABS( matrix->yy );
709
710         if ( temp != 0x10000L )
711         {
712           *upm = FT_DivFix( *upm, temp );
713
714           matrix->xx = FT_DivFix( matrix->xx, temp );
715           matrix->yx = FT_DivFix( matrix->yx, temp );
716           matrix->xy = FT_DivFix( matrix->xy, temp );
717           matrix->yy = FT_DivFix( matrix->yy, temp );
718           offset->x  = FT_DivFix( offset->x,  temp );
719           offset->y  = FT_DivFix( offset->y,  temp );
720         }
721
722         offset->x >>= 16;
723         offset->y >>= 16;
724       }
725
726       if ( pure_cff )
727       {
728         char*  style_name = NULL;
729
730
731         /* set up num_faces */
732         cffface->num_faces = cff->num_faces;
733
734         /* compute number of glyphs */
735         if ( dict->cid_registry != 0xFFFFU )
736           cffface->num_glyphs = cff->charset.max_cid + 1;
737         else
738           cffface->num_glyphs = cff->charstrings_index.count;
739
740         /* set global bbox, as well as EM size */
741         cffface->bbox.xMin =   dict->font_bbox.xMin            >> 16;
742         cffface->bbox.yMin =   dict->font_bbox.yMin            >> 16;
743         /* no `U' suffix here to 0xFFFF! */
744         cffface->bbox.xMax = ( dict->font_bbox.xMax + 0xFFFF ) >> 16;
745         cffface->bbox.yMax = ( dict->font_bbox.yMax + 0xFFFF ) >> 16;
746
747         cffface->units_per_EM = (FT_UShort)( dict->units_per_em );
748
749         cffface->ascender  = (FT_Short)( cffface->bbox.yMax );
750         cffface->descender = (FT_Short)( cffface->bbox.yMin );
751
752         cffface->height = (FT_Short)( ( cffface->units_per_EM * 12 ) / 10 );
753         if ( cffface->height < cffface->ascender - cffface->descender )
754           cffface->height = (FT_Short)( cffface->ascender - cffface->descender );
755
756         cffface->underline_position  =
757           (FT_Short)( dict->underline_position >> 16 );
758         cffface->underline_thickness =
759           (FT_Short)( dict->underline_thickness >> 16 );
760
761         /* retrieve font family & style name */
762         cffface->family_name = cff_index_get_name( cff, face_index );
763         if ( cffface->family_name )
764         {
765           char*  full   = cff_index_get_sid_string( cff,
766                                                     dict->full_name );
767           char*  fullp  = full;
768           char*  family = cffface->family_name;
769           char*  family_name = NULL;
770
771
772           remove_subset_prefix( cffface->family_name );
773
774           if ( dict->family_name )
775           {
776             family_name = cff_index_get_sid_string( cff,
777                                                     dict->family_name );
778             if ( family_name )
779               family = family_name;
780           }
781
782           /* We try to extract the style name from the full name.   */
783           /* We need to ignore spaces and dashes during the search. */
784           if ( full && family )
785           {
786             while ( *fullp )
787             {
788               /* skip common characters at the start of both strings */
789               if ( *fullp == *family )
790               {
791                 family++;
792                 fullp++;
793                 continue;
794               }
795
796               /* ignore spaces and dashes in full name during comparison */
797               if ( *fullp == ' ' || *fullp == '-' )
798               {
799                 fullp++;
800                 continue;
801               }
802
803               /* ignore spaces and dashes in family name during comparison */
804               if ( *family == ' ' || *family == '-' )
805               {
806                 family++;
807                 continue;
808               }
809
810               if ( !*family && *fullp )
811               {
812                 /* The full name begins with the same characters as the  */
813                 /* family name, with spaces and dashes removed.  In this */
814                 /* case, the remaining string in `fullp' will be used as */
815                 /* the style name.                                       */
816                 style_name = cff_strcpy( memory, fullp );
817
818                 /* remove the style part from the family name (if present) */
819                 remove_style( cffface->family_name, style_name );
820               }
821               break;
822             }
823           }
824         }
825         else
826         {
827           char  *cid_font_name =
828                    cff_index_get_sid_string( cff,
829                                              dict->cid_font_name );
830
831
832           /* do we have a `/FontName' for a CID-keyed font? */
833           if ( cid_font_name )
834             cffface->family_name = cff_strcpy( memory, cid_font_name );
835         }
836
837         if ( style_name )
838           cffface->style_name = style_name;
839         else
840           /* assume "Regular" style if we don't know better */
841           cffface->style_name = cff_strcpy( memory, (char *)"Regular" );
842
843         /*******************************************************************/
844         /*                                                                 */
845         /* Compute face flags.                                             */
846         /*                                                                 */
847         flags = FT_FACE_FLAG_SCALABLE   | /* scalable outlines */
848                 FT_FACE_FLAG_HORIZONTAL | /* horizontal data   */
849                 FT_FACE_FLAG_HINTER;      /* has native hinter */
850
851         if ( sfnt_format )
852           flags |= FT_FACE_FLAG_SFNT;
853
854         /* fixed width font? */
855         if ( dict->is_fixed_pitch )
856           flags |= FT_FACE_FLAG_FIXED_WIDTH;
857
858   /* XXX: WE DO NOT SUPPORT KERNING METRICS IN THE GPOS TABLE FOR NOW */
859 #if 0
860         /* kerning available? */
861         if ( face->kern_pairs )
862           flags |= FT_FACE_FLAG_KERNING;
863 #endif
864
865         cffface->face_flags = flags;
866
867         /*******************************************************************/
868         /*                                                                 */
869         /* Compute style flags.                                            */
870         /*                                                                 */
871         flags = 0;
872
873         if ( dict->italic_angle )
874           flags |= FT_STYLE_FLAG_ITALIC;
875
876         {
877           char  *weight = cff_index_get_sid_string( cff,
878                                                     dict->weight );
879
880
881           if ( weight )
882             if ( !ft_strcmp( weight, "Bold"  ) ||
883                  !ft_strcmp( weight, "Black" ) )
884               flags |= FT_STYLE_FLAG_BOLD;
885         }
886
887         /* double check */
888         if ( !(flags & FT_STYLE_FLAG_BOLD) && cffface->style_name )
889           if ( !ft_strncmp( cffface->style_name, "Bold", 4 )  ||
890                !ft_strncmp( cffface->style_name, "Black", 5 ) )
891             flags |= FT_STYLE_FLAG_BOLD;
892
893         cffface->style_flags = flags;
894       }
895
896
897 #ifndef FT_CONFIG_OPTION_NO_GLYPH_NAMES
898       /* CID-keyed CFF fonts don't have glyph names -- the SFNT loader */
899       /* has unset this flag because of the 3.0 `post' table.          */
900       if ( dict->cid_registry == 0xFFFFU )
901         cffface->face_flags |= FT_FACE_FLAG_GLYPH_NAMES;
902 #endif
903
904       if ( dict->cid_registry != 0xFFFFU && pure_cff )
905         cffface->face_flags |= FT_FACE_FLAG_CID_KEYED;
906
907
908       /*******************************************************************/
909       /*                                                                 */
910       /* Compute char maps.                                              */
911       /*                                                                 */
912
913       /* Try to synthesize a Unicode charmap if there is none available */
914       /* already.  If an OpenType font contains a Unicode "cmap", we    */
915       /* will use it, whatever be in the CFF part of the file.          */
916       {
917         FT_CharMapRec  cmaprec;
918         FT_CharMap     cmap;
919         FT_UInt        nn;
920         CFF_Encoding   encoding = &cff->encoding;
921
922
923         for ( nn = 0; nn < (FT_UInt)cffface->num_charmaps; nn++ )
924         {
925           cmap = cffface->charmaps[nn];
926
927           /* Windows Unicode? */
928           if ( cmap->platform_id == TT_PLATFORM_MICROSOFT &&
929                cmap->encoding_id == TT_MS_ID_UNICODE_CS   )
930             goto Skip_Unicode;
931
932           /* Apple Unicode platform id? */
933           if ( cmap->platform_id == TT_PLATFORM_APPLE_UNICODE )
934             goto Skip_Unicode; /* Apple Unicode */
935         }
936
937         /* since CID-keyed fonts don't contain glyph names, we can't */
938         /* construct a cmap                                          */
939         if ( pure_cff && cff->top_font.font_dict.cid_registry != 0xFFFFU )
940           goto Exit;
941
942 #ifdef FT_MAX_CHARMAP_CACHEABLE
943         if ( nn + 1 > FT_MAX_CHARMAP_CACHEABLE )
944         {
945           FT_ERROR(( "cff_face_init: no Unicode cmap is found, "
946                      "and too many subtables (%d) to add synthesized cmap\n",
947                      nn ));
948           goto Exit;
949         }
950 #endif
951
952         /* we didn't find a Unicode charmap -- synthesize one */
953         cmaprec.face        = cffface;
954         cmaprec.platform_id = TT_PLATFORM_MICROSOFT;
955         cmaprec.encoding_id = TT_MS_ID_UNICODE_CS;
956         cmaprec.encoding    = FT_ENCODING_UNICODE;
957
958         nn = (FT_UInt)cffface->num_charmaps;
959
960         error = FT_CMap_New( &CFF_CMAP_UNICODE_CLASS_REC_GET, NULL,
961                              &cmaprec, NULL );
962         if ( error && FT_Err_No_Unicode_Glyph_Name != error )
963           goto Exit;
964         error = FT_Err_Ok;
965
966         /* if no Unicode charmap was previously selected, select this one */
967         if ( cffface->charmap == NULL && nn != (FT_UInt)cffface->num_charmaps )
968           cffface->charmap = cffface->charmaps[nn];
969
970       Skip_Unicode:
971 #ifdef FT_MAX_CHARMAP_CACHEABLE
972         if ( nn > FT_MAX_CHARMAP_CACHEABLE )
973         {
974           FT_ERROR(( "cff_face_init: Unicode cmap is found, "
975                      "but too many preceding subtables (%d) to access\n",
976                      nn - 1 ));
977           goto Exit;
978         }
979 #endif
980         if ( encoding->count > 0 )
981         {
982           FT_CMap_Class  clazz;
983
984
985           cmaprec.face        = cffface;
986           cmaprec.platform_id = TT_PLATFORM_ADOBE;  /* Adobe platform id */
987
988           if ( encoding->offset == 0 )
989           {
990             cmaprec.encoding_id = TT_ADOBE_ID_STANDARD;
991             cmaprec.encoding    = FT_ENCODING_ADOBE_STANDARD;
992             clazz               = &CFF_CMAP_ENCODING_CLASS_REC_GET;
993           }
994           else if ( encoding->offset == 1 )
995           {
996             cmaprec.encoding_id = TT_ADOBE_ID_EXPERT;
997             cmaprec.encoding    = FT_ENCODING_ADOBE_EXPERT;
998             clazz               = &CFF_CMAP_ENCODING_CLASS_REC_GET;
999           }
1000           else
1001           {
1002             cmaprec.encoding_id = TT_ADOBE_ID_CUSTOM;
1003             cmaprec.encoding    = FT_ENCODING_ADOBE_CUSTOM;
1004             clazz               = &CFF_CMAP_ENCODING_CLASS_REC_GET;
1005           }
1006
1007           error = FT_CMap_New( clazz, NULL, &cmaprec, NULL );
1008         }
1009       }
1010     }
1011
1012   Exit:
1013     return error;
1014   }
1015
1016
1017   FT_LOCAL_DEF( void )
1018   cff_face_done( FT_Face  cffface )         /* CFF_Face */
1019   {
1020     CFF_Face      face = (CFF_Face)cffface;
1021     FT_Memory     memory;
1022     SFNT_Service  sfnt;
1023
1024
1025     if ( !face )
1026       return;
1027
1028     memory = cffface->memory;
1029     sfnt   = (SFNT_Service)face->sfnt;
1030
1031     if ( sfnt )
1032       sfnt->done_face( face );
1033
1034     {
1035       CFF_Font  cff = (CFF_Font)face->extra.data;
1036
1037
1038       if ( cff )
1039       {
1040         cff_font_done( cff );
1041         FT_FREE( face->extra.data );
1042       }
1043     }
1044   }
1045
1046
1047   FT_LOCAL_DEF( FT_Error )
1048   cff_driver_init( FT_Module  module )
1049   {
1050     FT_UNUSED( module );
1051
1052     return CFF_Err_Ok;
1053   }
1054
1055
1056   FT_LOCAL_DEF( void )
1057   cff_driver_done( FT_Module  module )
1058   {
1059     FT_UNUSED( module );
1060   }
1061
1062
1063 /* END */