用的是EasyX_20200902版本,使用loadimage函数加载图片时,窗口其他地方会变成黑色,代码中把窗口设置为白色,加载了两张图片,运行结果只显示第二张图片,其他地方都是黑色。不知道是哪里的问题。
#include <iostream>
#include <easyx.h>
#include <graphics.h>
#include "mmsystem.h"
#pragma comment(lib,"Winmm.lib")
#include <stdio.h>
#include <windows.h>
using namespace std;
int main()
{
initgraph(1120, 780); //初始化绘画窗口
setbkcolor(WHITE); //背景颜色
cleardevice();
BeginBatchDraw(); //批量绘图 暂不输出
setorigin(890, 650);
loadimage(NULL, _T("white.png"), 60, 60);
setorigin(10, 10);
loadimage(NULL, _T("top.png"), 60, 60);
EndBatchDraw();
Sleep(10000);
}