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 {} {}
Posted in HowTo, Information
find . -iname "*.jpg" -print0|xargs -0 -I {} convert -quality 60 -resize 461x317 {} {}
Posted in HowTo, Information