TextOut,outtextxy

2018-11-11 16:25 更新


 原型:extern void TextOut(int x, int y, char *str, int mode);
             
 用法:#include <system.h>
 
 功能:在屏幕上指定位置輸出字符串
 
 說明:outtextxy為指向TextOut的宏,用法相同。
       str所指向字符串可以為中文或英文。中文顯示成16x16點(diǎn)陣,英文顯示成8x16點(diǎn)陣。
       mode決定往屏幕上寫的方式,其值含義如下:
       0:背景透明,點(diǎn)陣中為0的點(diǎn)不顯示。
       1:正常方式,即點(diǎn)陣中為0的點(diǎn)擦除,為1的點(diǎn)顯示。
       2:反顯方式,即點(diǎn)陣中為1的點(diǎn)擦除,為0的點(diǎn)顯示。
       3:異或方式,即點(diǎn)陣中點(diǎn)的值和屏幕當(dāng)前位置的值作異或后取值,為0則擦除,為1顯示。
 
 
 舉例:

     // TextOut.c
     
     #include <system.h>
     main()
     {
       clrscr();
       
       TextOut(0,0,"文曲星",1);
       TextOut(10,10,"文曲星",0);
       
       TextOut(20,20,"您好",2);
       TextOut(30,30,"GGV-金遠(yuǎn)見",3);
       getchar();
       return 0;
     }      


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號