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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...