Reputation: 128
I want to compile ImageMagick the C++ version on android, the Magick++ documentation seems simple but doesn't show a definitive list of compatible formats like jpeg, gif etc and whether these require installation of the requirements such as libjpeg, libpng.
ImageMagick itself shows this list, so it's suffice to say that included formats like webp and tiff will also work in Magick++, but...
Upvotes: 1
Views: 102
Reputation: 8153
Magick++ is a C++ API to the C methods of ImageMagick. This means that reading and writing the different formats will be handled in the C part. If you want support for jpeg you need to link the coders module with libjpeg. Below is an answer to your sub questions:
Upvotes: 2