Resize large images


/ Published in: Bash
Save to your folder(s)

Resize images that are greater than 800x600 and place them in the "small" directory.


Copy this code and paste it in your HTML
  1. for i in *jpg; do convert $i -resize 800x600\> small/$i; done

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.