Skip to content

Instantly share code, notes, and snippets.

@dchapkine
Created August 4, 2014 00:59
Show Gist options
  • Save dchapkine/7d3ea18da5ffd0227d96 to your computer and use it in GitHub Desktop.
Save dchapkine/7d3ea18da5ffd0227d96 to your computer and use it in GitHub Desktop.
Mogrify snippets
1/ Resize to X width, keep aspect ratio
#!/bin/bash
mogrify -resize 2000x *.jpg
2/ Resize to Y height, keep aspect ratio
#!/bin/bash
mogrify -resize x2000 *.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment