snippet: view plain - save this
1 for i in *.jpg
2 do convert $i -scale 1024x760 resized-$i;
3 done
Resize a lot of images with shell and imagemagick
1 for i in *.jpg
2 do convert $i -scale 1024x760 resized-$i;
3 done
Resize a lot of images with shell and imagemagick
1 comments
interresting. Why not using Pil to do it ?