Lightweight imagemagick wrapper?

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 »

You can exclude most any image format you don't need in the ImageMagick/coders folder. A few may be required by the MagickCore API such as xc.c. If you build a static version of the library you need to remove the register calls for any format you exclude from magick/static.c. Make sure you are using a recent version of ImageMagick. We moved the command line methods from MagickCore to MagickWand. With a bit of extra effort you could probably remove some image methods you don't need from the MagickCore API.
Post Reply