Help finding magickwand lib after linux debian install

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

The MagickWand library should be located here:
  • /usr/lib/libWand.*
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

The easiest solution would be to download the source from ftp://ftp.imagemagick.org/pub/ImageMagick and build:
  • tar xvfz ImageMagick-6.2.6-4.tar.gz
    cd ImageMagick-6.2.6
    ./configure --enable-delegate-build --enable-shared --disable-static \
    --with-modules --with-quantum-depth=16 --enable-ltdl-convenience \
    --enable-libtool-verbose
    make
    make install
Post Reply