Skip to content

Instantly share code, notes, and snippets.

@pangorgo
Created June 18, 2017 19:18
Show Gist options
  • Save pangorgo/a8cec5dcac3c7fa0af4f4916ef8c6745 to your computer and use it in GitHub Desktop.
Save pangorgo/a8cec5dcac3c7fa0af4f4916ef8c6745 to your computer and use it in GitHub Desktop.
some batch image convert useful tricks
# cropping largest possible image with prvided ratio
RATIO=960x540; ls *.jpg | xargs -I "{}" convert {} -geometry $RATIO^ -gravity center -crop $RATIO+0+0 resized/{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment