Batch Resize Images
I was searching for a tool to scale images batch wise in Ubuntu and it seems that ImageMagick is just the one for it. Here's how you can get it working as well.Step1: install ImageMagick
$ sudo apt-get install imagemagick
Step2: go to the images folder and type
$ mogrify -sample 1280 x 800 *.JPG
Here 1280 x 800 is the final size you want and *.JPG is the file set.
To get more info on command options, visit http://linuxuser32.wordpress.com/2007/06/16/batch-image-convert-scale-thumbnail-jpegs-pdf/
Subscribe to:
Post Comments
(
Atom
)
Hi There,
ReplyDeleteI found other cool way of doing so, it's has sufficient GUI and powerful too!
http://ubuntuforums.org/showthread.php?t=466598
Awesome! thanks for the info. I would sure give a try for my next image work.
ReplyDelete