Created
June 12, 2017 08:19
-
-
Save ktejnora/80633bcd2e6a50feb7dc33317e8c3e80 to your computer and use it in GitHub Desktop.
Imagemagick batch remove left and right border from image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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