Skip to content

Instantly share code, notes, and snippets.

@asmega
Last active October 12, 2024 20:10
Show Gist options
  • Save asmega/da68077597741b62708479c9282d46d0 to your computer and use it in GitHub Desktop.
Save asmega/da68077597741b62708479c9282d46d0 to your computer and use it in GitHub Desktop.
image manipulation
# correctly orientate images
mogrify -auto-orient *.jpg
# resize an image to 1024x104 with cropping
# set gravity to center, north, northeast etc
# outputs to `out` directory
mogrify -resize "1024x1024^" -gravity center -extent 1024x1024 -path out INPUT.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment