any way of speeding up convert/resize?

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 »

In most cases, the only way to speed up ImageMagick is to run on a faster processor or add more memory or limit the size of the input image. The cost of processing of an image is directly related to the area of the input image. You can speed up JPEG thumbnail creation by adding the -size option to the command line (e.g. convert -size 220x220 image.jpg -resize 220x220 image.png). For other image types, use -thumbnail to create thumbnails for a modest speed-up. There is also a modest speed-up if you are using a recent version of ImageMagick. The current release is ImageMagick 6.2.6-3.
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Post by anthony »

Could it be communication setup/send/shutdown times instead?

Communications are often much slower as they have to get timing issues correctly, delaying the results delivery.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply