Results 1 to 2 of 2
I was wondering how to resize several images for example in the same folder using image magik's convert....
- 10-26-2005 #1Just Joined!
- Join Date
- Aug 2005
- Location
- Europe
- Posts
- 13
resize several imgs using convert?
I was wondering how to resize several images for example in the same folder using image magik's convert.
- 10-26-2005 #2
Hmm, most likly you'd be able to use a bash for loop for this.
that will convert all the images in your current directory into 200x200 pixel images... you can change the convert comand to whatever you want.Code:#!/bin/bash files=$(ls -1) for x in $files do convert -geometry 200x200 $x newsize-$x done


Reply With Quote
