All versions of the libraries

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
michaleben123
Posts: 1
Joined: 2019-04-08T18:48:30-07:00
Authentication code: 1152

All versions of the libraries

Post by michaleben123 »

Is there a way to get a list of all versions of the libraries that ImageMagick is using, similar to what OIIO does?
What I mean is something like:

libjpeg-turbo 2.01
libpng 1.6.35
OpenExr 2.3
...etc...

I am trying to avoid a DLL conflict. Or is there a way to build ImageMagick static with all its libraries?
Top
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: All versions of the libraries

Post by fmw42 »

Code: Select all

convert -list format
will show most of them with versions.
Post Reply