Szunyog's Blog
Small tips and tricks from the IT world.
Resize files using one command
Using
ImageMagick
it is easy to resize multiple images by the following command:
for i in `ls *.JPG`; do convert -resize 1024 $i $i; done
A bit detailed version of this script can be found in my bitbucket repository:
resizer.sh
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)