Skip to content

Instantly share code, notes, and snippets.

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 joshhartman/68bb189fc13ed604a73eb5a7a3d9cb68 to your computer and use it in GitHub Desktop.
Save joshhartman/68bb189fc13ed604a73eb5a7a3d9cb68 to your computer and use it in GitHub Desktop.
ImageMagick -- Resize large images recursively and preserve the aspect ratio -- Windows Command Prompt
FOR /R %f IN (*.jpg) DO magick "%f" -resize 3000x3000^> -quality 85 "%f"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment