Skip to content

Instantly share code, notes, and snippets.

@gotofritz
Last active June 26, 2019 13:35
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 gotofritz/4645209 to your computer and use it in GitHub Desktop.
Save gotofritz/4645209 to your computer and use it in GitHub Desktop.
ImageMagick bits and pieces
# resize image, padded
# This will resize images so that they exactly X wide and Y high, keeping the image ratio, and centering them, padding as needed with black
convert -resize XxY source.jpg -background "#000000" -gravity center -extent XxY destination.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment