API library versions?
Posted: 2017-04-29T10:20:54-07:00
Hi,
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:
But while making some test I was not able to find the Image::distort method. So i Thought that maybe I have not installed the right package. So I did a search and I got this:
So my question is: I have installed the right package? If not which should I install to have the last version of the Magick++ API (and be able to call the Image::distort method).
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!
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!