2

我正在制作一个在 OS X 和 Windows 上运行的游戏。游戏在 Mac 上可以很好地加载纹理,但在 Windows 上标题png.h不可用。我将如何在 C++ 中的 Windows 上加载 .png 图像?我可以使用这段代码:

#ifdef __APPLE__
//code to load png image on osx here...
//i have this code working on mac
#else
//code to load png image on windows here...
//i need help writing this code or installing libpng
#endif

让它在 Windows 上正常运行的最简单方法是什么?我花了 3 个多小时试图libpng上 Visual Studio,但没有成功。我正在使用过剩。谢谢

4

0 回答 0