Jump to content

Wanted: Program to do batch image processing


jdion81
 Share

Recommended Posts

I have used ImageMagick to resize / convert jpg files. But the deal is sometimes it does not resize to the size I specify. I am trying to resize a number of images that were either scanned or from a digital cam to 640x480 for a webpage. The syntax I am using is

convert -size file.jpg 640.480file.jpg

I would like to find a gui to imagemagick or some other program that is gui based to do this. (and preferably have a batch mode)

Link to comment
Share on other sites

But the deal is sometimes it does not resize to the size I specify

 

This may be because it needs to keep the same aspect ratio as the original file. Are you aware ImageMagick will do a batch mode?

 

for img in `ls *.jpg`
do
 convert -sample 640x480 $img web-$img
done

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...