So I have been trying to use CImg to load png images. I copied all needed zlib and libpng headers to VC/include , created libpng15.lib and zlib.lib as Release and Debug Libraries.
The link errors I get are the following:
error LNK2001: unresolved external symbol png_read_end
error LNK2001: unresolved external symbol png_read_image
error LNK2001: unresolved external symbol png_read_update_info
error LNK2001: unresolved external symbol png_set_filler
error LNK2001: unresolved external symbol png_set_gray_to_rgb
error LNK2001: unresolved external symbol png_set_tRNS_to_alpha
error LNK2001: unresolved external symbol png_get_valid
error LNK2001: unresolved external symbol png_set_expand_gray_1_2_4_to_8
error LNK2001: unresolved external symbol png_set_palette_to_rgb
error LNK2001: unresolved external symbol png_get_IHDR
error LNK2001: unresolved external symbol png_read_info
error LNK2001: unresolved external symbol png_set_sig_bytes
error LNK2001: unresolved external symbol png_init_io
error LNK2001: unresolved external symbol png_set_longjmp_fn
error LNK2001: unresolved external symbol png_destroy_read_struct
error LNK2001: unresolved external symbol png_create_info_struct
error LNK2001: unresolved external symbol png_create_read_struct
error LNK2001: unresolved external symbol png_sig_cmp
In my project I include CImg as an external header dependency , like this:
// SomeHeaderFile.h
#define cimg_use_png
#include "CImg.h"
using namespace cimg_library;
Then , a source file uses this to load a certain png from memory and do operations on it.
I link the libraries inside Project properties -> Linker -> Input -> Additional Libraries , and also add the lib directory in VCDirectories. ( I also tried using #pragma comment lines , but it didn't work aswell).
The strange thing is , when I tried one of the examples that had come with libpng , I had linked exactly the same way and it worked. Perhaps my usage of CImg is the problem? I guess I should also add that i'm compiling the project as a DLL , but I don`t really think it should effect anything.