【文件属性】:
文件名称:GBK字库制作软件.zip
文件大小:101KB
文件格式:ZIP
更新时间:2022-06-23 14:42:45
GBK 字模 GBK获取函数
GBK字库制作软件:
1.打开软件
2.点击打开文件->选择gbk_ziku.txt文件
3.然后选择扫描模式之内的选项
4.保存
字模的查询方式:可以用如下代码实现:
#include
#include
#define UNICODE_TEST
#if defined(UNICODE_TEST)
#define GB2312_CH_H_BEGIN 0x81
#define GB2312_CH_L_BEGIN 0x40
#define ONE_PAGE_GB2312 192
static int LCD_UnicodeSwitch(int unicode)
{
unsigned char h_tmp,m_tmp,l_tmp,shift = 0;
int re_unicode = 0;
h_tmp = (unicode >> 8) & 0xFF;
m_tmp = ((unicode >> 4) & 0x0F) - (GB2312_CH_L_BEGIN >> 4);
l_tmp = unicode & 0x0F;
unicode = (h_tmp - GB2312_CH_H_BEGIN)*ONE_PAGE_GB2312
+ m_tmp *16 + l_tmp + shift;
printf("0x%.2X 0x%.2X 0x%.2X \n",h_tmp,m_tmp,l_tmp);
printf("unicode:%d \n",unicode);
}
#endif
int test[2] = {1,2};
int test1[2];
int main()
{
#if defined(UNICODE_TEST)
LCD_UnicodeSwitch(0xB0A1);
#endif
}
【文件预览】:
ziku.exe
Mold.exe
gbk_ziku.txt