Skip to content

Instantly share code, notes, and snippets.

@ktejnora
Created June 12, 2017 08:19
Show Gist options
  • Save ktejnora/80633bcd2e6a50feb7dc33317e8c3e80 to your computer and use it in GitHub Desktop.
Save ktejnora/80633bcd2e6a50feb7dc33317e8c3e80 to your computer and use it in GitHub Desktop.
Imagemagick batch remove left and right border from image
for img in *png; do \
mv ${img} ${img}.bak ; \
convert ${img}.bak \
-gravity west -background white -splice 5x0 -background black -splice 5x0 -trim +repage -gravity West -chop 5x0 \
-gravity east -background white -splice 5x0 -background black -splice 5x0 -trim +repage -gravity east -chop 5x0 ${img:r}.png ;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment