⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ttobjs.c

📁 qt-embedded-2.3.8.tar.gz源码
💻 C
📖 第 1 页 / 共 3 页
字号:
  FT_LOCAL  FT_Error  TT_Init_Size( TT_Size  size )  {    FT_Error  error = TT_Err_Ok;#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER    TT_Face    face   = (TT_Face)size->root.face;    FT_Memory  memory = face->root.memory;    FT_Int     i;    TT_ExecContext  exec;    FT_UShort       n_twilight;    TT_MaxProfile*  maxp = &face->max_profile;    size->ttmetrics.valid = FALSE;    size->max_function_defs    = maxp->maxFunctionDefs;    size->max_instruction_defs = maxp->maxInstructionDefs;    size->num_function_defs    = 0;    size->num_instruction_defs = 0;    size->max_func = 0;    size->max_ins  = 0;    size->cvt_size     = face->cvt_size;    size->storage_size = maxp->maxStorage;    /* Set default metrics */    {      FT_Size_Metrics*  metrics  = &size->root.metrics;      TT_Size_Metrics*  metrics2 = &size->ttmetrics;      metrics->x_ppem = 0;      metrics->y_ppem = 0;      metrics2->rotated   = FALSE;      metrics2->stretched = FALSE;      /* set default compensation (all 0) */      for ( i = 0; i < 4; i++ )        metrics2->compensations[i] = 0;    }    /* allocate function defs, instruction defs, cvt, and storage area */    if ( ALLOC_ARRAY( size->function_defs,                      size->max_function_defs,                      TT_DefRecord )                ||         ALLOC_ARRAY( size->instruction_defs,                      size->max_instruction_defs,                      TT_DefRecord )                ||         ALLOC_ARRAY( size->cvt,                      size->cvt_size, FT_Long )     ||         ALLOC_ARRAY( size->storage,                      size->storage_size, FT_Long ) )      goto Fail_Memory;    /* reserve twilight zone */    n_twilight = maxp->maxTwilightPoints;    error = TT_New_GlyphZone( memory, n_twilight, 0, &size->twilight );    if ( error )      goto Fail_Memory;    size->twilight.n_points = n_twilight;    /* set `face->interpreter' according to the debug hook present */    {      FT_Library  library = face->root.driver->root.library;      face->interpreter = (TT_Interpreter)                            library->debug_hooks[FT_DEBUG_HOOK_TRUETYPE];      if ( !face->interpreter )        face->interpreter = (TT_Interpreter)TT_RunIns;    }    /* Fine, now execute the font program! */    exec = size->context;    /* size objects used during debugging have their own context */    if ( !size->debug )      exec = TT_New_Context( face );    if ( !exec )    {      error = TT_Err_Could_Not_Find_Context;      goto Fail_Memory;    }    size->GS = tt_default_graphics_state;    TT_Load_Context( exec, face, size );    exec->callTop   = 0;    exec->top       = 0;    exec->period    = 64;    exec->phase     = 0;    exec->threshold = 0;    {      FT_Size_Metrics*  metrics    = &exec->metrics;      TT_Size_Metrics*  tt_metrics = &exec->tt_metrics;      metrics->x_ppem   = 0;      metrics->y_ppem   = 0;      metrics->x_scale  = 0;      metrics->y_scale  = 0;      tt_metrics->ppem  = 0;      tt_metrics->scale = 0;      tt_metrics->ratio = 0x10000L;    }    exec->instruction_trap = FALSE;    exec->cvtSize = size->cvt_size;    exec->cvt     = size->cvt;    exec->F_dot_P = 0x10000L;    /* allow font program execution */    TT_Set_CodeRange( exec,                      tt_coderange_font,                      face->font_program,                      face->font_program_size );    /* disable CVT and glyph programs coderange */    TT_Clear_CodeRange( exec, tt_coderange_cvt );    TT_Clear_CodeRange( exec, tt_coderange_glyph );    if ( face->font_program_size > 0 )    {      error = TT_Goto_CodeRange( exec, tt_coderange_font, 0 );      if ( !error )        error = face->interpreter( exec );      if ( error )        goto Fail_Exec;    }    else      error = TT_Err_Ok;    TT_Save_Context( exec, size );    if ( !size->debug )      TT_Done_Context( exec );#endif /* TT_CONFIG_OPTION_BYTECODE_INTERPRETER */    size->ttmetrics.valid = FALSE;    return error;#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER  Fail_Exec:    if ( !size->debug )      TT_Done_Context( exec );  Fail_Memory:    TT_Done_Size( size );    return error;#endif /* TT_CONFIG_OPTION_BYTECODE_INTERPRETER */  }  /*************************************************************************/  /*                                                                       */  /* <Function>                                                            */  /*    TT_Done_Size                                                       */  /*                                                                       */  /* <Description>                                                         */  /*    The TrueType size object finalizer.                                */  /*                                                                       */  /* <Input>                                                               */  /*    size :: A handle to the target size object.                        */  /*                                                                       */  FT_LOCAL_DEF  void  TT_Done_Size( TT_Size  size )  {#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER    FT_Memory  memory = size->root.face->memory;    if ( size->debug )    {      /* the debug context must be deleted by the debugger itself */      size->context = NULL;      size->debug   = FALSE;    }    FREE( size->cvt );    size->cvt_size = 0;    /* free storage area */    FREE( size->storage );    size->storage_size = 0;    /* twilight zone */    TT_Done_GlyphZone( &size->twilight );    FREE( size->function_defs );    FREE( size->instruction_defs );    size->num_function_defs    = 0;    size->max_function_defs    = 0;    size->num_instruction_defs = 0;    size->max_instruction_defs = 0;    size->max_func = 0;    size->max_ins  = 0;#endif    size->ttmetrics.valid = FALSE;  }  /*************************************************************************/  /*                                                                       */  /* <Function>                                                            */  /*    Reset_Outline_Size                                                 */  /*                                                                       */  /* <Description>                                                         */  /*    Resets a TrueType outline size when resolutions and character      */  /*    dimensions have been changed.                                      */  /*                                                                       */  /* <Input>                                                               */  /*    size :: A handle to the target size object.                        */  /*                                                                       */  static  FT_Error  Reset_Outline_Size( TT_Size  size )  {    TT_Face   face;    FT_Error  error = TT_Err_Ok;    FT_Size_Metrics*  metrics;    if ( size->ttmetrics.valid )      return TT_Err_Ok;    face = (TT_Face)size->root.face;    metrics = &size->root.metrics;    if ( metrics->x_ppem < 1 || metrics->y_ppem < 1 )      return TT_Err_Invalid_PPem;    /* compute new transformation */    if ( metrics->x_ppem >= metrics->y_ppem )    {      size->ttmetrics.scale   = metrics->x_scale;      size->ttmetrics.ppem    = metrics->x_ppem;      size->ttmetrics.x_ratio = 0x10000L;      size->ttmetrics.y_ratio = FT_MulDiv( metrics->y_ppem,                                           0x10000L,                                           metrics->x_ppem );    }    else    {      size->ttmetrics.scale   = metrics->y_scale;      size->ttmetrics.ppem    = metrics->y_ppem;      size->ttmetrics.x_ratio = FT_MulDiv( metrics->x_ppem,                                           0x10000L,                                           metrics->y_ppem );      size->ttmetrics.y_ratio = 0x10000L;    }    /* Compute root ascender, descender, test height, and max_advance */    metrics->ascender    = ( FT_MulFix( face->root.ascender,                                        metrics->y_scale ) + 32 ) & -64;    metrics->descender   = ( FT_MulFix( face->root.descender,                                        metrics->y_scale ) + 32 ) & -64;    metrics->height      = ( FT_MulFix( face->root.height,                                        metrics->y_scale ) + 32 ) & -64;    metrics->max_advance = ( FT_MulFix( face->root.max_advance_width,                                        metrics->x_scale ) + 32 ) & -64;#ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS    /* set to `invalid' by default */    size->strike_index = 0xFFFF;#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -