Skip to content

Instantly share code, notes, and snippets.

@indatawetrust
Created December 7, 2016 11:42
Show Gist options
  • Save indatawetrust/cb9284f7bdea82bff0c5429ef42a43b3 to your computer and use it in GitHub Desktop.
Save indatawetrust/cb9284f7bdea82bff0c5429ef42a43b3 to your computer and use it in GitHub Desktop.
resize and white background
resize(){
for f in *.jpg; do
mogrify $f -resize "275x275" -gravity center -background white -extent 275x275 $f
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment