Batch Resize Images With Imagemagick


/ Published in: Bash
Save to your folder(s)

A simple one-liner to resize images from commandline


Copy this code and paste it in your HTML
  1. for I in *.jpg; do convert "$I" -resize 250x250 "thumb.$I"; done

URL: batch-resize-images-with-imagemagick

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.