PODOFO - PDF Library? (zlib.dll) Programming Software Development by daino … to ship something with it in order to use the PoDoFo functionality. There is a section in it's documentation which… testing it must be in the same directory as the PoDoFo-using executable or the directory containing it must be on… is this just for testing? I want to statically compile PODOFO with my application so there is no extra piecec which… Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by daino … more problems now. Probably related. I'm trying to install PODOFO (PDF Library) on CodeBlocks IDE (if thats the right term… CMAKE (i'm trying to create Makefile). Source Directory: C:\Podofo // this is where all the source files are. Where to… PoDoFO build on Visual studio Programming Software Development by necrovore Hi, I am trying to explore PoDoFo for parsing PDF files. So I tried to build it … this: Error 27 error LNK1104: cannot open file 'podofo.lib' D:\Podofo_for_VS\podofo\build_vs\test\CreationTest\LINK CreationTest I am trying to… get the lib file of podofo in the process of building the same. Can someone tell… Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by daino Ancient Dragon.. thanks for the Tutorial suggestion, but unfortunately it really doesn't help at all. It explains how to build the CMakeLists file which is already built in this case (for PODOFO). My issue comes after that stage. Re: PoDoFO build on Visual studio Programming Software Development by NathanOliver Is the `podofo.lib` file located in the directories you have listed? Re: PoDoFO build on Visual studio Programming Software Development by mike_2000_17 … errors you got prior to this one prevented the "podofo.lib" library from getting built correctly, which is why… Re: PoDoFO build on Visual studio Programming Software Development by necrovore … solution in build_VS. This did the trick! Points to add: podofo 0.9.3 will now compile in any version above… Podofo or Adobe SDK Programming Software Development by daino Anyone used both Podofo to parse pdf's. How does this compare to just … Re: zlib for podofo - Cannot find zlib library Programming Software Development by daino …you to enter a couple of variables when building the PODOFO Library. One is for the **Include** Directory of ZLIB… for ZLIB. In the CMAKELists file which came with PODOFO the two references to variables (and in no way does… for both. My question is this. If this software (PODOFO) is distributed to be build via CMAKE and the CMAKELists… Charts for PODOFO (PDF Library) Programming Software Development by daino Hi Anyone know of a compatible charts Library for inserting charts into a PDF file created by PODOFO? I was thinking of Gnuplot but not sure if there's a better option out there. Thanks danny2000 zlib for podofo - Cannot find zlib library Programming Software Development by daino I'm trying to install podofo (pdf library) for use with MingW in Windows XP. It requires zlib. I'm using CMAKE to generate the makefile. For some reason, CMAKE, no matter how many times i redirect the ZLIB_LIBRARY to the zlib directory an error in CMAKE occurs telling me that it can't find ZLIB_LIBRARY. Any clues as to why.???? Re: zlib for podofo - Cannot find zlib library Programming Software Development by daino … the zlib library file when I go to build the PODOFO library using cmake. Can you see a library file or… Re: zlib for podofo - Cannot find zlib library Programming Software Development by daino … library directory names Will install libraries to C:/Program Files/PoDoFo/lib Looking for strings.h Looking for strings.h - found… Re: zlib for podofo - Cannot find zlib library Programming Software Development by BobS0327 Keep us posted on your progress. I've downloaded/installed the toolchain to build Podofo in order to recreate your issues. So, hopefully, I may be of some additional help. Re: zlib for podofo - Cannot find zlib library Programming Software Development by daino … on a roll I'll add something else. In the PODOFO Cmake directory there is a LibraryDebugandRelease file which uses the… Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by Ancient Dragon you must always ship the zlib1.dll with your program unless they provide a static-link library. You always have to put it in the same folder as your program or one of the folders listed in the PATH environment variable. The statement "during testing" is a little misleading. If you have the source code to zlib1.dll then you can … Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by daino Thanks. Do you know how to use zlib then? On their website they have the source files so I'm not sure if I have to compile it and put it in the bin folder of my IDE first. If so, where can I get instructions on how to compile zlib? Does it need to be compiled before I can use it to create a makefile with CMAKE? Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by BobS0327 > On their website they have the source files so I'm not sure if I have to compile it and put it in the bin folder of my IDE first. If so, where can I get instructions on how to compile zlib? Download the Zlib source code for Zlib version 1.2.7. Assuming that you are using a Microsoft compiler in the Win32 environment, you will then open a … Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by daino Thanks Bob, I'm getting warmer. Is the command prompt the same if I'm using MingW? Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by daino > Download the Zlib source code for Zlib version 1.2.7. Assuming that you are using a Microsoft compiler in the Win32 environment, you will then open a Visual Studio command prompt and go to the Zlib-1.2.7 folder and execute the following: > > nmake.exe -f win32/Makefile.msc > > This will build Zlib for you. Here's what I've … Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by Ancient Dragon nmake.exe is a Microsoft product, not supported by MinGW. If you look in the MinGW bin folder you will see mingw32-make.exe, and if you give it --help the program will display a short list of all the commands you can give it. mingw-make.exe can not use the makefile with \*.msc extension because that's for the Microsoft compiler. Look in the … Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by daino I can't seem to get that exe file to run any slower that 1/10 of a second so I can't catch what it's saying. Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by BobS0327 mingw32-make -f win32/Makefile.gcc Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by Ancient Dragon Are you studying a [cmake tutorial?](http://www.cmake.org/cmake/help/cmake_tutorial.html) Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by mike_2000_17 > Where to build the binaries: C:/CodeBlocks/MinGW/bin // this could be a really dumb move as I'm not sure where these binaries should go? You should not do that, definitely not. Usually, when working with cmake, you want to create at least three folders: src, build and bin, for the source code, the temporary build files (cmake and make cache … Re: PODOFO - PDF Library? (zlib.dll) Programming Software Development by BobS0327 > CMake Error at C:/Program Files/CMake 2.8/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:97 (MESSAGE): > Could NOT find ZLIB (missing: ZLIB_LIBRARY ZLIB_INCLUDE_DIR) > Call Stack (most recent call first): > C:/Program Files/CMake 2.8/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:288 (_FPHSA_FAILURE_MESSAGE)… Re: Charts for PODOFO (PDF Library) Programming Software Development by daino Any clues on this one. I like the look of Gnuplot but not sure if it's possible to integrate their charts into a pdf document. Does anyone have some experience in that field. Thanks Danny2000 Re: zlib for podofo - Cannot find zlib library Programming Software Development by daino I think I see where this may be going wrong.. Would anyone know how to 'BUILD' a 'Debug' and 'Release' version of zlib using a MingW compiler. I'm currently inputting the cmd entry **mingw32-make -f win32\Makefile.gcc** and it seems to build without error but in the next step where I 'BUILD', it needs ZLIB and tells me it can't find the … Re: zlib for podofo - Cannot find zlib library Programming Software Development by BobS0327 > Would anyone know how to 'BUILD' a 'Debug' and 'Release' version of zlib using a MingW compiler I believe the Release version is the default build version. Have you tried adding -DDEBUG to the CFLAGS variable in the makefile to build the debug version? Re: zlib for podofo - Cannot find zlib library Programming Software Development by daino > Have you tried adding -DDEBUG to the CFLAGS variable in the makefile to build the debug version? Whats that? I have no idea how to do this. Where can I read up on this sort of thing.