Skip to content

Instantly share code, notes, and snippets.

@dylanvee
Created August 21, 2012 22:22
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dylanvee/3419976 to your computer and use it in GitHub Desktop.
Save dylanvee/3419976 to your computer and use it in GitHub Desktop.
imagemagick crop square
# This snippet does everything I've ever wanted out of imagemagick.
# Equivalent to cropping to min(width, height) by min(width, height) and resizing to N x N.
# See http://www.imagemagick.org/Usage/thumbnails/#cut
# If you're writing this in bash or zsh, don't forget to escape the ^ with a backslash
convert -resize 256x256^ -extent 256x256 in.png out.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment