Skip to content

Instantly share code, notes, and snippets.

@fk128
Created March 11, 2018 11:09
Show Gist options
  • Save fk128/24a0b43bb4d914c1c6ee426a9a8e09c1 to your computer and use it in GitHub Desktop.
Save fk128/24a0b43bb4d914c1c6ee426a9a8e09c1 to your computer and use it in GitHub Desktop.
#!/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