Font 用FontCvtST.exe按如下步骤生成C文件字库
1 新建.txt文件,输入汉字. 编码格式改为unicode.
2 打开FontCvtST.exe选择字体
3 把所有字体取消选择。
4 FontCvtST.exe读入.txt文件.
5 另存为.c文件。
6 修改.c文件编码格式为UTF-8。
简单程序测试:
GUI_UC_SetEncodeUTF8();
GUI_SetFont(&GUI_Fontsong33);
GUI_DispStringAt("在指定位置显示字符串",10,150);
GUI_SetFont(&GUI_Font32_ASCII); //设置字体
GUI_DispString("25"); //在指定位置显示字符串
测试不能正常显示中文, 将编译器(如keil)的默认编码方式,改为UTF-8就可以显示中文了.
但是所有文件的注释全部变为乱码了.
请问有没有什么方法可以不用改keil的默认编码方式,而正常显示汉字? 因为需要的汉字不多希望直接放在.c文件中.
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
不僅可以轉編碼,還能轉繁簡。(單純轉編碼可以用 iconv,用法相似。)
https://github.com/xiaoyjy/cconv
- duke@duke-pc ~ $ cconv --help
- cconv: invalid option -- '-'
- Chinese-Convert Tool. Version 0.6.2 (inside libcconv version 0.6.2).
- Copyright (c) 2008-2009, China. xiaoyjy@gmail.com
- Usage: cconv [OPTION...] [FILE]
- Convert encoding of given files from one encoding to another.
- Input/Output format specification:
- -f [NAME] encoding of original text! at this you can use GBK, BIG5 or UTF8
- -t [NAME] encoding for output! at this you can use GBK, BIG5, UTF8-CN, UTF8-HK or UTF-TW
- Information:
- -l list coded character sets can used
- Output control:
- -o [FILE] output file
- -?, -h, -v Show this help page.
- Report bugs to <xiaoyjy@gmail.com>
复制代码批量配合 find 等命令即可。
一周热门 更多>