Created
March 11, 2018 11:09
-
-
Save fk128/24a0b43bb4d914c1c6ee426a9a8e09c1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash | |
# add border to image for 4x5 aspect ratio using imagemagick | |
# add_border.sh image.jpg | |
infile=$1 | |
outfile=${1%.jpg}_border.jpg | |
bgcolor="white" | |
hh=`convert $infile -ping -format "%h" info:` | |
ww=`convert $infile -ping -format "%[fx:0.8*h]" info:` | |
convert $infile -gravity center -background $bgcolor -extent ${ww}x${hh} $outfile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment