Hi every one.
How cam I show an image in my graphic window?
I tried the blow code but nothing happened:
And how can I remove that image from mu graphic window?Code:#include <iostream>
#include <graphics.h>
using namespace std;
int main()
{
initwindow(getmaxwidth(),getmaxheight(),"A");
readimagefile("E:\images.jpg",10,10,325,325);
getch();
return 0;
}
Thanks a lot.
