Resize all images in current directory using ImageMagick
on Tuesday 11th March, 2008 Gabe speculated thusly…find . -iname "*.jpg" -print0|xargs -0 -I {} convert -quality 60 -resize 461x317 {} {}
Tags: HowTo, imagemagick, photo manipulation
find . -iname "*.jpg" -print0|xargs -0 -I {} convert -quality 60 -resize 461x317 {} {}
Tags: HowTo, imagemagick, photo manipulation