[Podofo-users] Podofo 0.9.5, Install with debug and release shared library

2018-07-31 Thread Patrice Guérin
Hello All, What is the best way to handle install process to have debug and release shared library together ? Visual Studio IDE doesn't make distinct names podofo.dll and import library podofo.lib depending of target configuration setting. Thank you in advance Kind regards, Patrice.

[Podofo-users] Windows build on Podofo 0.9.5, Episode 2

2018-07-27 Thread Patrice Guérin
Hello, There is something strange in the CMake report about OpenSSL... I've compiled myself OpenSSL release 1.0.2o as a shared library and let the install process in the makefile do his job. So I've defined the CMake variables for LIBCRYPTO (aka libeay32) and SSL_EAY (aka ssleay32) the same

Re: [Podofo-users] Windows build on Podofo 0.9.5

2018-07-20 Thread Patrice Guérin
understand why Linux doesn't have the same problem... Thank you to all for your help. Kind regards, Patrice. zyx a écrit : On 13.7.2018 at 10:48 Patrice Guérin wrote: ZLIB_INCLUDE_DIR=$(EXTERN_DEV)/zlib/1.2.11/include Hi, while Linux shell uses '$' to mark a variable for expansion, Win

[Podofo-users] Windows build on Podofo 0.9.5

2018-07-17 Thread Patrice Guérin
Hello, My name is Patrice and I'm new with Podofo. I was able to build Podofo 0.9.5 on Linux Debian 7 without problem but it's a little bit more complicated on Windows with Visual Studio 2013. I've build the dependent libraries (jpeg9c, png1634, tiff 4.0.9, freetype 2.9, zlib 1.2.11) without

Re: [Podofo-users] Password protected document

2018-09-05 Thread Patrice Guérin
Hello Mathew & Christophe, +1, no attachment. Kind regards, Patrice. Matthew Brincke a écrit : Hello Christophe, hello all, On 03 September 2018 at 17:49 BLANCHARD Christophe wrote: Hello all, I'm trying to read attached password-protected (password is 'password') am I the only one to

Re: [Podofo-users] Windows build on Podofo 0.9.5

2018-07-13 Thread Patrice Guérin
Hello Dmitry, It's the way I do, except that all the dependent library paths are expressed relative to the environment variable not with absolute paths. In the case of moving libraries elsewhere, I've just to change the env variable and re-generate the VS solution. In the case of absolute

[Podofo-users] Windows build on Podofo 0.9.5

2018-07-13 Thread Patrice Guérin
Hello, My name is Patrice and I'm new with Podofo. I was able to build Podofo 0.9.5 on Linux Debian 7 without problem but it's a little bit more complicated on Windows with Visual Studio 2013. I've build the dependent libraries (jpeg9c, png1634, tiff 4.0.9, freetype 2.9, zlib 1.2.11) without

Re: [Podofo-users] Help on Podofo mingw-w64-x86_64-podofo 0.9.6-1 on msys2

2020-12-02 Thread Patrice Guérin
Hello Gilles, Dependency walker can help to find which shared library is missing https://www.dependencywalker.com/ Kind regards. Patrice. Gilles Maire a écrit : Hello I installed mingw-w64-x86_64-podofo through msys2/pacman on windows 10 . I get a crash on podofo example file. With

[Podofo-users] Question about PdfFileSpec

2022-12-12 Thread Patrice Guérin
Hello, I use PdfFileSpec object to embed a XML file into a PDF in the following manner : PdfNamesTree *names = GetNamesTree( true ); PdfFileSpec pEmbeddedFile( FilePath, true, Doc, true ); names->AddValue( "EmbeddedFiles", FilePath.BaseName(), *pEmbeddedFile.GetObject() ); It