0
价值
1
回答
4761
浏览
怎样在 easyx 里显示 gif 动图啊
#include <graphics.h>
#include <conio.h>
int main()
{
initgraph(640, 480);
loadimage(NULL, _T("E:\\timg.gif"));
_getch();
closegraph();
}
这样输出GIF在窗口上只显示第一帧,怎么才能显示全部啊