Skip to content

Instantly share code, notes, and snippets.

@ildaroit
Forked from tmeits/reduce-jpgs-to-500px.sh
Created March 25, 2019 14:21
Show Gist options
  • Select an option

  • Save ildaroit/06c0ee5b6b07bd9d30f7dfdab17f7dda to your computer and use it in GitHub Desktop.

Select an option

Save ildaroit/06c0ee5b6b07bd9d30f7dfdab17f7dda to your computer and use it in GitHub Desktop.
Reduce all JPEGs in folder to 500px wide and 75% quality using ImageMagick's mogrify
#!/bin/bash
mogrify -strip -type optimize -filter Cubic -resize 500x -quality 75% *.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment