freebsd-dev/contrib/cortex-strings/scripts/trim.sh
Andrew Turner 09a53ad8f1 Import the Linaro Cortex Strings library into contrib.
Sponsored by:	The FreeBSD Foundation
2016-09-19 13:12:09 +00:00

10 lines
211 B
Bash
Executable File

#!/bin/bash
#
# Trims the whitespace from around any given images
#
for i in $@; do
convert $i -bordercolor white -border 1x1 -trim +repage -alpha off +dither -colors 32 PNG8:next-$i
mv next-$i $i
done