DJGPP+ALLEGRO如何显示大字体
各位大虾:小弟刚学DJGPP+ALLEGRO遇到在图形模式下想显示一些大的日期与时间的问题。请帮忙解答一吓
#include "conio.h"
#include "stdio.h"
#include "dos.h"
#include "stdio.h"
#include "stdlib.h"
#include "time.h"
#include "allegro.h"
BITMAP *b1,*b2,*BCK;
PALLETE M32;
main()
{
char tmp[128];
struct tm *ptr;
time_t lt;
allegro_init();
set_color_depth(16);/ t CRT color to 16
set_gfx_mode(GFX_AUTODETECT,640,480,0,0);
b1=load_bitmap("tb1.bmp",M32);
masked_blit(b1,screen,0,0,0,0,640,480);
lt=time(NULL);
ptr=gmtime(<);
ptr=localtime(<);
strftime(tmp,128,"%A\n",ptr);
text_mode(-1);
textout_centre(screen,font,tmp,345,280,-1);//在这里如何可以把字体调大一点
strftime(tmp,128,"%b-%d-%Y\n",ptr);
textout(screen,font,tmp,300,290,-1);//在这里如何可以把字体调大一点
getch();
return 0;
}