Mostly technical stuff with some interesting moments of life

Batch Resize Images

2 comments
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/

2 comments :

  1. Hi There,

    I found other cool way of doing so, it's has sufficient GUI and powerful too!

    http://ubuntuforums.org/showthread.php?t=466598

    ReplyDelete
  2. Awesome! thanks for the info. I would sure give a try for my next image work.

    ReplyDelete