I want to delelop an application for the RaspberryPi in C++ that will use ImageMagick. I found that there is the Magick++ API but I am not quite sure which version/package I need to install:
Following the instructions on a web site I installed the following package:
Code: Select all
sudo apt-get install libgraphicsmagick++-dev
Code: Select all
apt-cache search dev | grep magick
graphicsmagick-libmagick-dev-compat - image processing libraries providing ImageMagick interface
libghc-hsmagick-dev - FFI bindings to GraphicsMagick library
libgraphicsmagick++1-dev - format-independent image processing - C++ development files
libgraphicsmagick1-dev - format-independent image processing - C development files
libmagick++-6.q16-dev - object-oriented C++ interface to ImageMagick - development files
libmagick++-dev - object-oriented C++ interface to ImageMagick
libmagickcore-6.q16-dev - low-level image manipulation library - development files (Q16)
libmagickcore-dev - low-level image manipulation library -- transition package
libmagickwand-6.q16-dev - image manipulation library - development files
libmagickwand-dev - image manipulation library - transition for development files
On the other hand I have seen that there is "other" API called MagickWand. What are the main differences? Any suggestion on which one use (Magick++ or MagickWand)
Thanks!