Compile for Performance

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Compile for Performance

Post by magick »

Have you tried the latest release, ImageMagick 6.4.9-2? It includes support for OpenMP which permits ImageMagick to run in parallel on a multi-core system. Without OpenMP support, recent versions of ImageMagick might run a bit slower than your version because it includes support for alpha blending when resizing to prevent halo's for images that are not completely opaque. Otherwise the only other option is to use compile time options such as -O3. You can see how Ubuntu built ImageMagick with this command:
  • convert -list configure
Post Reply