//fname: bmpts.c //test: BmpShowAt(x,y, filename , color);¦ì¸m //for: test iView LCD show .bmp file #include #include int main() { int x=1; int y=1; int n=1; InitLib(); InitLCD(); if(InitLCD()>0)//initializing LCD Print("\nSomething wrong"); while (n<=6) { Print("\r\n n=%d x=%d y=%d\r\n",n,x,y); BmpShowAt(x,y, "e.bmp" , 1); n++; x=x+10; y=y+10; } Getch(); CloseLCD(); return 0; }