I have >300 jpgs I would like to make thumbnails of, so I use the script:
Code: Select all
for file in *.jpg
do convert -auto-orient -thumbnail x180 "$file" thumb-"$file"
done
Operating system is Ubuntu 8.04 (Hardy Heron). Have tried both on a 32-bit system as well as 64-bit system (not that this would matter, but I did test it on both machines). Both run 8.04.
Running ImageMagick from the repository:
>$ convert -version
Version: ImageMagick 6.3.7 02/19/08 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2008 ImageMagick Studio LLC
I currently have no webserver where I can upload some of the pictures for testing purposes, so if they are needed, I'll probably pass them through PM.
Do you have any ideas as to what is causing this?