home *** CD-ROM | disk | FTP | other *** search
- main(){
-
- int style,x,i;
- char str[12];
-
- setibm();
- initgraf(6,0,0);
- fontinit();
- font_load(0,"ibmrom");
- fontcspt(0,"MONO HATCH STYLES",320,10,0,1,0);
- mono_hatch();
- for (x = 0,style = 0; x < 560; x += 70, style++){
- eg_rectangle(x,15,x+69,90,1,1,style);
- egitoa(str,style);
- fontcspt(0,str,x+35,100,0,1,0);
- }
-
- for (x = 0; x < 560; x += 70, style++){
- eg_rectangle(x,110,x+69,180,1,1,style);
- egitoa(str,style);
- fontcspt(0,str,x+35,190,0,1,0);
- }
- getch();
- initgraf(3,0,0);
- }
-