装了esayx库的DEVc++在导入图片时候,运行程序黑屏,怎么解决?
#include<stdio.h>
#include<stdlib.h>
#include<graphics.h>
IMAGE img[12];
int imgIndex[12] ={0,2,4,8,16,32,64,128,256,512,1024,2048};
int main()
{
initgraph(600,800);
IMAGE background;
loadimage(&background,"D:\红色故事程序\0.bmp.psd",600,800);
putimage(0,0,&background);
getchar();
closegraph();
system("pause");
return 0;
}