Saturday 1 December 2018

c++ - errors error LNK2001: unresolved external symbol _deflateEnd in VC++

I am using a external library of libharu-2.0.8, this is a open source pdf library.
This lib have a lib file called libhpdf.lib and few header files




I have written a simple code to use this library. I am getting following errors.



libhpdf.lib(hpdf_streams.obj) : error LNK2001: unresolved external symbol _deflateEnd
libhpdf.lib(hpdf_streams.obj) : error LNK2001: unresolved external symbol _deflate
libhpdf.lib(hpdf_streams.obj) : error LNK2001: unresolved external symbol deflateInit

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...