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


You need to login to view comments.