Skip to content

Instantly share code, notes, and snippets.

@kuinak
Created September 21, 2012 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kuinak/3764026 to your computer and use it in GitHub Desktop.
Save kuinak/3764026 to your computer and use it in GitHub Desktop.
How to crop an image down to a square thumbnail
# takes image and fits to a square, cutting off edges
convert original.jpg -thumbnail 150x150^ -gravity Center -extent 150x150 new.jpg
# takes image and fits to a square, specified by bounds
convert -extract 200x200+250+0 -thumbnail 150x150^ -extent 150x150 -strip original.jpg new.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment