Bulk resizing images with Imagemagick.
Quick and dirty, but handy one-liner that resizes all *.jpg files in the current directory.
for image in *.jpg; do convert $image -resize 800x600 800x600-$image; done
Quick and dirty, but handy one-liner that resizes all *.jpg files in the current directory.
for image in *.jpg; do convert $image -resize 800x600 800x600-$image; done