A quick and simple way to resize a folder full of pictures is to issue the following command on a Linux computer:
$ for file in *.jpg; do convert $file -resize 25% rz-$file; done
A quick and simple way to resize a folder full of pictures is to issue the following command on a Linux computer:
$ for file in *.jpg; do convert $file -resize 25% rz-$file; done
convert to BMP images: convert “$1” -type truecolor “$1.bmp”
for file in *.png; do convert $file -type truecolor “${file%.*}.bmp”; done