如何用C语言取数据

如何用C语言取数据,第1张

uchar

DataBuf

char

*pt

=

(char

*)0x20

char

i

for(i=0

i<=

(0x7f-0x20)

i++)

{

DataBuf

=

*pt++

}

这样应该可以把数据读出来吧拆铅毕,不过楼主为什么说这些数据激岩在通用寄存器里呢?旅芹

FILE *PHZK16

/*

*HZK16字库初始化_打开字库

*/

void _InitHzk16()

{

PHZK16=fopen("Hzk16","世信闹rb")

if(!PHZK16){

printf("error in Hzk16,not exist\n")

system("pause")

exit(1)

}

}

/*

*取得字码

*/

void _GetHzk16Code(unsigned char code[],unsigned char bytes[])

{

unsigned char qh,wh

unsigned long offset

qh=code[0]-0xa0/*得到区号*/

wh=code[1]-0xa0/*得到位号*/

offset=(94*(qh-1)+(wh-1))*32L/*得到偏移位置*/

fseek(PHZK16,offset,SEEK_SET)/*移文件指针到要读取的汉字字模处*/

fread(bytes,32,1,PHZK16)/*读取32 个汉字的汉坦禅字字模*/

}

/******************************************************************************************************************/

/*下面这个代码 是C画图模式下可用*/

/*

*改变x、y(左上点)的位置,就可以搜罩实现文字的横向输出

*单个文字输出

*/

void _InputHzk16(int x,int y,unsigned char code[],int color)

{

int i,j,x0=0,y0=0

unsigned char s,mat[32]

_GetHzk16Code(code,mat)

for(i=0i<16i++){

s=mat[2*i]

x0=x+7

y0=y+i

while(s){

if(s%2){

putpixel(x0,y0,color)

}

s=s/2

x0--

}

s=mat[2*i+1]

x0=x+15

while(s){

if(s%2){

putpixel(x0,y0,color)

}

s=s/2

x0--

}

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8201883.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-14
下一篇 2023-04-14

发表评论

登录后才能评论

评论列表(0条)

保存