Linux ImageMagik & Mogrify compress & sharpen


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



Copy this code and paste it in your HTML
  1. # http://dptnt.com/2007/09/batch-resize-images-using-imagemagick/
  2. find /var/www/ -name "*.jpg" -exec mogrify -quality 80 -sharpen .14 {} \;
  3. find * -name "*.jpg" -exec mogrify -quality 80 -sharpen .14 {} \;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.