Which version to use static vs dll

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
troyd1
Posts: 73
Joined: 2007-07-29T17:13:19-07:00

Which version to use static vs dll

Post by troyd1 »

There are 4 exe versions for windows. q8 dll, q16 static, q8 dll and q8 static. I have been using the q16 and want to go to the q8 version. What is the difference between the dll version and the static version and what are the performance related specifics with it? I am trying to process huge amounts of graphics on a server.

Thanks
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Which version to use static vs dll

Post by magick »

DLL is recommended. Only portions of the code that are in use are loaded and the distribution is significantly smaller. You of course can use the static release if neither of these advantages are useful to you.
Post Reply