1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 不依賴(lài)高點(diǎn)陣字庫(kù)實(shí)現(xiàn)屏幕漢字顯示

        時(shí)間:2023-03-03 21:12:51 計(jì)算機(jī)畢業(yè)論文 我要投稿
        • 相關(guān)推薦

        不依賴(lài)高點(diǎn)陣字庫(kù)實(shí)現(xiàn)屏幕漢字顯示

        在設(shè)計(jì)軟件封面或菜單標(biāo)題時(shí),常需用到放大的漢字顯示。通常采用的方法是一邊從高點(diǎn)陣字庫(kù)中讀取漢字的字形碼,一邊加以變換在圖形方式下繪點(diǎn);但高點(diǎn)陣字庫(kù)占有較大存儲(chǔ)空間,例如 :2.13漢字系統(tǒng)中四種字體(宋、仿宋、黑、楷)的40X40點(diǎn)陣字庫(kù)共占用近5M字節(jié)的硬盤(pán)空間。一般漢字操作系統(tǒng)中的漢字顯示都采用16X16點(diǎn)陣字庫(kù)(僅占約260K字節(jié));
        而由于硬盤(pán)空間的限制,并不是每臺(tái)微機(jī)上都裝有高點(diǎn)陣字庫(kù)。
        如何使?jié)h字放大顯示程序不依賴(lài)高點(diǎn)陣字庫(kù)而獨(dú)立運(yùn)行?本文提供一種方法,將需要放大顯示的漢字串的字形碼一次性從2.13I高點(diǎn)陣字庫(kù)(40X40點(diǎn)陣)讀入一個(gè)SUBHZK文件,以后每次顯示放大漢字時(shí)只需從該文件讀取字模信息,而SUBHZK比高點(diǎn)陣字庫(kù)要小的多。這樣,漢字顯示程序運(yùn)行時(shí)就徹底擺脫了高點(diǎn)陣字庫(kù)(只需打開(kāi)文件SUBHZK),可在西文方式或任何中文方式下運(yùn)行。
        程序采用Turbo C2.0編寫(xiě),漢字放大顯示程序DISPHZ運(yùn)行時(shí)只需將SUBHZK和相應(yīng)顯示器的圖形驅(qū)動(dòng)程序(如CGA.BGI、EGAVGA.BGI)隨DISPHZ.EXE放在同一目錄下即可。
        須注意的是,40X40點(diǎn)陣字模(字形碼)實(shí)際上由40×36點(diǎn)陣組成,其漢字字形碼排列格式為
        @@T5S06100.GIF;圖1@@
        程序清單:
        /*程序READGHZ.C:將需放大顯示的漢字串的字形碼從2.13系統(tǒng)40X40點(diǎn)陣字庫(kù)讀入
        文件SUBHZK*/
        #include
        #include
        int openhzk40(int);
        FILE *fp,*fptr; /*定義全局文件指針*/
        char *hzk-table[]={"c:\\213\\hzk40s","c:\\231\\hzk40f",
        "c:\\213\\hzk40h","c:\\213\hzk40k"};
        main()
        {
        unsigned char *string="管理信息系統(tǒng)";
        /*需放大的漢字串*/
        unsigned char inter-code ,zone-code,bit-code;
        int locate,hzk-num,flag=0
        char *p,dot-arrays[180];
        if((fptr=fopen("subhzk","wb"))==NULL){
        printf("Cannot open file\n");
        exit(1);
        } /*打開(kāi)或創(chuàng)建文件SUBHZK */
        openhzk40(1);
        p=string;
        while(*p)
        {
        inter-code=*p++;
        if(inter-code>0xal)
        if(flag==0)
        {
        zone-code=(inter-code-0xa0)&0x7f;/*漢字區(qū)碼*/
        flag=1;
        }
        eles
        {
        bit-code=(inter-code-0xa0)&0x7f;
        /*漢字位碼*/
        flag=0;
        locate=(zone-code-0x10)*94+bit-code-1;
        /*漢字字模地址*/
        fseek(fp,locate*180L,SEEK-SET);
        /*置文件指針于漢字字模地址*/
        fread(dot-arrays,sizeof(dot-arrays),1,fp);
        /*讀漢字字模于數(shù)組中*/
        fwrite(dot-arrays,sizeof(dot-arrays),1,fptr);
        /*寫(xiě)漢字字模到文件*/
        }
        }
        fclose(fp);
        fclose(fptr);
        return 0;
        }
        int openhzk40(int hzk-num)

        /*打開(kāi)2.13系統(tǒng)40X40點(diǎn)陣字庫(kù)文件*/
        {
        if((fp=fopen(hzk-table[hzk-num],"rb"))==NULL)
        {
        cputs("Error on open file");
        getch();
        exit(1);
        }
        return 0;
        }
        /*程序DISPHZ.C:從文件SUBHZK中讀取漢字
        字形碼信息并放大顯示*/
        #include


        #include
        #include
        #define RED 4
        #define grOK 0
        #define STRLEN 6
        /*要顯示的漢字串所含漢字個(gè)數(shù)*/
        int writehz (int,int,int,int,int,int);
        void init-graph();
        void far restorecr tmode();
        FILE *fp;
        main ()
        {
        init-graph(); /*初始化圖形模式*/
        if((fp=fopen("subhzk","rb"))==NULL){
        printf("Cannot open file/n");
        exit(1);
        }
        writehz(30,30,10,2,2,RED);
        fclose(fp);
        getch();
        restorecr tmode();
        return 0;
        }
        void init-graph()
        {
        int gdriver=DETECT,gmode,errorcode;
        initgraph(&gdriver,&gmode,"");
        errorcode=graphresult();
        if(errorcode!=grOK)
        {
        printf("Graphics error:%s\n",grapherrormsg(errorcode));
        printf("Press any key to halt:");
        getch();
        exit();
        }
        }
        /*漢字字模讀取與放大顯示*/
        int writehz(int x,int y,int z,int x-zoom,int y-zoom,int color)
        {
        int i,j,k,n;
        char dot-arrays[180]; /*定義180字節(jié)數(shù)組,暫存漢字字模*/
        for(n=0;n{
        fread(dot-arrays,sizeof(dot-arrays),1,fp);
        for(i=0;i<36;i++) /*繪漢字上排(1至72字節(jié)所含點(diǎn)陣)*/
        for(j=0,j<2;j++)
        for(k=0;k<8,k++)
        if((dot-arrays[i*2+j]>>(7-k))&1)
        putpixel(x-zoom*(x+i),y-zoom*(y+j*8+k),color);
        for(i=0;i<36;i++) /*繪漢字下排(73至180字節(jié)所含點(diǎn)陣);*/
        for(j=0,j<3;j++)
        for(k=0,k<8,k++)
        if((dot-arrays[72+i*3+j]>>(7-k))&1)
        putpixel(x-zoom*(x+i),y-zoom*(y+16+j*8+k),color);
        x=x+36+z; /*移位,準(zhǔn)備繪下一漢字*/
        }
        return 0;
        }

        【不依賴(lài)高點(diǎn)陣字庫(kù)實(shí)現(xiàn)屏幕漢字顯示】相關(guān)文章:

        論漢字對(duì)世界的貢獻(xiàn):漢字與英文對(duì)大腦的不同影響05-29

        都市頻道制作網(wǎng)的設(shè)計(jì)與實(shí)現(xiàn)05-29

        基于minigui的網(wǎng)真機(jī)界面的實(shí)現(xiàn)08-05

        城市旅游網(wǎng)站的設(shè)計(jì)與實(shí)現(xiàn)論文(精選6篇)05-07

        企業(yè)知識(shí)管理的實(shí)現(xiàn)技術(shù)和工具的電商論文05-02

        企業(yè)法律風(fēng)險(xiǎn)防范體系建立的原因及實(shí)現(xiàn)路徑08-06

        如何通過(guò)內(nèi)部控制實(shí)現(xiàn)企業(yè)持續(xù)性發(fā)展05-21

        用Verilog HDL實(shí)現(xiàn)I2C總線功能06-01

        利用電力線實(shí)現(xiàn)住宅智能化06-13

        構(gòu)筑企業(yè)數(shù)據(jù)中心 實(shí)現(xiàn)理性分析決策06-04

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>