i'm testing XnView, GD lib (PHP bundle) and ImageMagick. Due to the large file format compatibility of XnView and ImageMagick i'm doing some benchmarks on them.
I found out that XnView ist much faster in average but has a lost in color acurancy. But this is not the point.
I was wondering, if I could speed things up by using the -rtype quick flag when resizing. It turned out to be even much slower.
My aim is just creating really (and i mean really) fast thumbnails (well, width of 400px) where quality is not very important.
I'm having JPEGs of any size going up to 30MB, which takes far more than 60secs (my limiter).
Now i'm using:
Code: Select all
nconvert -out png -o output_image.png -ratio -resize 400 0 input_image.jpg
Code: Select all
nconvert -out png -o output_image.png -ratio -rtype quick -resize 400 0 input_image.jpg
Any idea how to speed things up?