查看: 4348|回复: 1

微软雅黑显示中文字符

[复制链接]
  • TA的每日心情
    奋斗
    2018-8-29 20:40
  • 签到天数: 1341 天

    连续签到: 1 天

    [LV.10]以坛为家III

    发表于 2013-5-17 19:05:24 | 显示全部楼层 |阅读模式
    分享到:
    最近对TI的图形库比较感兴趣
    想着先实现中文字符显示
    参考 hello 和 lang_demo
    并根据 TI_StellarisWare图形库使用指南.pdf 和 TI StellarisWare中文显示使用指南.pdf
    两个文档 仿照 lang_demo 的结构 实现了自己的中文字符显示
    TI_StellarisWare图形库使用指南.pdf (1.28 MB, 下载次数: 2)
    回复

    使用道具 举报

  • TA的每日心情
    奋斗
    2018-8-29 20:40
  • 签到天数: 1341 天

    连续签到: 1 天

    [LV.10]以坛为家III

     楼主| 发表于 2013-5-17 22:59:42 | 显示全部楼层
    补充下关键的代码
    1. int main(void)
    2. {
    3.         tContext sContext;
    4.     tRectangle sRect;
    5.         long lLineHeight;
    6.        
    7.     // Set the clocking to run directly from the crystal.
    8.     //
    9.     ROM_SysCtlClockSet(SYSCTL_SYSDIV_1 | SYSCTL_USE_OSC | SYSCTL_XTAL_16MHZ | SYSCTL_OSC_MAIN);
    10.        
    11.     //
    12.     // Initialize the device pinout appropriately for this board.
    13.     //
    14.     PinoutSet();
    15.        
    16.         //
    17.     // Initialize the display driver.
    18.     //
    19.     Kitronix320x240x16_SSD2119Init();
    20.        
    21.        
    22.         //
    23.     // Set graphics library text rendering defaults.
    24.     //
    25.     GrLibInit(&GRLIB_INIT_STRUCT);
    26.        
    27.         //
    28.     // Set the string table and the default language.
    29.     //
    30.     GrStringTableSet(STRING_TABLE);
    31.         //
    32.        
    33.     //
    34.     // Set the default language.
    35.     //
    36.     ChangeLanguage(GrLangEnUS);
    37.        
    38.     // Initialize the graphics context.
    39.     //
    40.     GrContextInit(&sContext, &g_sKitronix320x240x16_SSD2119);
    41.        
    42.         GrContextForegroundSet(&sContext, ClrDarkBlue);
    43.         //
    44.     // Fill the top 24 rows of the screen with blue to create the banner.
    45.     //
    46.     sRect.sXMin = 0;
    47.     sRect.sYMin = 0;
    48.     sRect.sXMax = GrContextDpyWidthGet(&sContext) - 1;
    49.     sRect.sYMax = 23;
    50.     GrContextForegroundSet(&sContext, ClrDarkBlue);
    51.     GrRectFill(&sContext, &sRect);
    52.         //
    53.     // Put a white box around the banner.
    54.     //
    55.     GrContextForegroundSet(&sContext, ClrWhite);
    56.     GrRectDraw(&sContext, &sRect);
    57.        
    58.         //
    59.     // Put the application name in the middle of the banner.
    60.     //
    61.     GrContextFontSet(&sContext, g_pFontCm20);
    62.     GrStringDrawCentered(&sContext, "chinese", -1,
    63.                          GrContextDpyWidthGet(&sContext) / 2, 10, 0);
    64.                                                  
    65.         // Thisfunctionreturnsastringfromthecurrentstringtable.
    66.    
    67.        
    68.         GrStringLanguageSet(GrLangZhPRC);
    69.         lLineHeight = GrFontHeightGet(FONT_20PT);                                                       
    70.     GrContextFontSet(&sContext, FONT_20PT);

    71.         GrStringGet(STR_INTRO_1, g_pcChinese, MAX_LANGUAGE_NAME_LEN);
    72.         //GrStringGet(STR_INTRO_1, g_pcChinese, MAX_LANGUAGE_NAME_LEN);
    73.         GrContextForegroundSet(&sContext, ClrSilver);
    74.     DrawStringWrapped(&sContext, g_pcChinese, lLineHeight, 70, 32, false);
    75.        
    76.         GrStringGet(STR_INTRO_2, g_pcChinese, MAX_LANGUAGE_NAME_LEN);
    77.         //GrStringGet(STR_INTRO_1, g_pcChinese, MAX_LANGUAGE_NAME_LEN);
    78.         GrContextForegroundSet(&sContext, ClrSilver);
    79.     DrawStringWrapped(&sContext, g_pcChinese, lLineHeight, 50, 100, false);
    80.        
    81.         while(1)
    82.         {

    83.         }
    84.         return 0;
    85.        
    86. }
    复制代码
    回复 支持 反对

    使用道具 举报

    您需要登录后才可以回帖 注册/登录

    本版积分规则

    关闭

    站长推荐上一条 /3 下一条



    手机版|小黑屋|与非网

    GMT+8, 2025-1-11 09:56 , Processed in 0.131371 second(s), 18 queries , MemCache On.

    ICP经营许可证 苏B2-20140176  苏ICP备14012660号-2   苏州灵动帧格网络科技有限公司 版权所有.

    苏公网安备 32059002001037号

    Powered by Discuz! X3.4

    Copyright © 2001-2024, Tencent Cloud.