Skip to content

Instantly share code, notes, and snippets.

@ericoporto
Created March 3, 2016 18:38
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 ericoporto/5cbb1e02452a70f167ca to your computer and use it in GitHub Desktop.
Save ericoporto/5cbb1e02452a70f167ca to your computer and use it in GitHub Desktop.
Just so I can remember how I batch cropped a lot of images
@echo off
for %%f in (*.png) do (
echo %%~nf
convert.exe "%%~nf.png" -gravity center -crop 2592x1458+0-84 +repage "..\out3\%%~nf.png"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment