Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to Link Imagemagick library to Qt(windows)
    text
    copied!<p>I have developed an application with mac and for one month now, Im trying to link Qt with ImageMagick on windows.</p> <p>I just cant find the files and the version of Imagemagick library that need to be linked to Qt in order to make my application work on windows.</p> <p>I have tried most of the libraries from <a href="http://www.imagemagick.org/script/binary-releases.php" rel="nofollow noreferrer">here</a></p> <p>Thats the only thing I added to the .pro file while I was developing on a mac</p> <pre><code>INCLUDEPATH += . /opt/local/include/ImageMagick LIBS += -L/opt/local/lib -lMagick++ </code></pre> <p>When I add this to my .pro</p> <pre><code>INCLUDEPATH += C:/im6/include/ImageMagick LIBS += C:/im6/lib/libMagickWand.a LIBS += C:/im6/lib/libMagick++.a LIBS += C:/im6/lib/libMagickCore.a C:/im6/lib/libMagick++.a </code></pre> <p>I get 10.000 + simmilar errors to that:</p> <pre><code>(Image.o):C:\msys\1.0\home\cristy\ImageMagick-6.6.6-0/Magick++/lib/Image.cpp:4157: undefined reference to `__gxx_personality_sj0' C:/im6/lib/libMagick++.a(Image.o):C:\msys\1.0\home\cristy\ImageMagick-6.6.6-0/Magick++/lib/Image.cpp:4157: undefined reference to `_Unwind_SjLj_Register' C:/im6/lib/libMagick++.a(Image.o):C:\msys\1.0\home\cristy\ImageMagick-6.6.6-0/Magick++/lib/Image.cpp:4178: undefined reference to `_Unwind_SjLj_Unregister' </code></pre> <p>For more errors check <a href="https://stackoverflow.com/questions/4415778/imagemagick-linking-to-qt-and-mingw32-make-debug-error-2">this</a></p> <p>Has anyone tried to build and deploy an ImageMagick application using qt on windows ? Which files do I need to link while building and which files while deploying ?</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload