Writing a PNG in C++

后端 未结 3 1124
一生所求
一生所求 2020-12-10 22:37

I am trying to write some data to a PNG file using C++ with Visual Studio Express 2013 on Windows 7 64-bit. I understand that to do this, I need to use an external library,

3条回答
  •  无人及你
    2020-12-10 23:05

    The missing header file may be because you need to specify addition include directories as well to point to libpng's header files. It looks like you are probably linking correctly.

    It's been a while since I've done this in visual studios, but there should be a field for this in the projects configuration.

提交回复
热议问题