我正在尝试在 Visual C++ 应用程序中显示 PNG 文件。在过去的六八个小时里,我一直在尝试各种方法,此时需要一些帮助。我从几个教程中改编了以下几行。为什么图片不显示?
Gdiplus::Graphics graphics(hdc);
Gdiplus::Image * image = Gdiplus::Image::FromFile(L"C:\\test.png");
graphics.DrawImage(image,0,0);
谢谢您的帮助!
我正在尝试在 Visual C++ 应用程序中显示 PNG 文件。在过去的六八个小时里,我一直在尝试各种方法,此时需要一些帮助。我从几个教程中改编了以下几行。为什么图片不显示?
Gdiplus::Graphics graphics(hdc);
Gdiplus::Image * image = Gdiplus::Image::FromFile(L"C:\\test.png");
graphics.DrawImage(image,0,0);
谢谢您的帮助!