/ Published in: Bash
URL: batch-resize-images-with-imagemagick
A simple one-liner to resize images from commandline
Expand |
Embed | Plain Text
for I in *.jpg; do convert "$I" -resize 250x250 "thumb.$I"; done
You need to login to post a comment.
