Skip to content

Instantly share code, notes, and snippets.

@markwk
Created December 4, 2019 21:00
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 markwk/c1be8b773e76e10756730c23729a925e to your computer and use it in GitHub Desktop.
Save markwk/c1be8b773e76e10756730c23729a925e to your computer and use it in GitHub Desktop.
Bulk Trim Header and Footer from Screenshots with imagemagick
# Bulk Trim Header and Footer from Screenshots
# brew install imagemagick
for f in *.jpg;
do
convert "$f[1440x777+0+0]" "${f%.jpg}".jpg
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment