Skip to content

Instantly share code, notes, and snippets.

@hskang9
Created July 29, 2017 10:51
Show Gist options
  • Save hskang9/96bb7833b9ce06d2638fd46f8ad1fcdc to your computer and use it in GitHub Desktop.
Save hskang9/96bb7833b9ce06d2638fd46f8ad1fcdc to your computer and use it in GitHub Desktop.
Auto bbox crop using imagemagick for images in a folder
# reference : http://www.imagemagick.org/Usage/crop/
for PHOTO in *.jpeg
do
BASE=`basename $PHOTO`
convert $BASE -crop `convert $BASE -virtual-pixel edge -blur 0x15 -fuzz 15% \
-trim -format '%wx%h%O' info:` +repage cropped/$BASE;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment