Skip to content

Instantly share code, notes, and snippets.

@AubreyF
Last active July 2, 2021 21:31
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 AubreyF/ba6d5bc862b46bb014f14ae45aac3f86 to your computer and use it in GitHub Desktop.
Save AubreyF/ba6d5bc862b46bb014f14ae45aac3f86 to your computer and use it in GitHub Desktop.
ImageMagick Snippets

Batch-optimize all images in working directory

  • DESTRUCTIVE - MAKE A BACKUP FIRST

  • Removes borders

  • Resizes extra-large images, while preserving the original resolution of smaller images

  • Strips any comment or EXIF metadata

  • Converts to 85% quality JPG files

    mogrify -format jpg -flatten -strip -fuzz 1% -trim +repage -resize 2000x1000> -quality 85% *.jpg

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment