diff --git a/app/gui/strip-image.sh b/app/gui/strip-image.sh new file mode 100755 index 0000000..006a55f --- /dev/null +++ b/app/gui/strip-image.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +CONVERT_CHECK=`convert -version` +if [ $? -ne 0 ] +then + echo "" + echo "INSTALL imagemagick" + echo "" + echo " sudo apt-get install imagemagick" + exit 1 +fi + + +find oven_control/images -name *.png -exec convert {} -strip {} \;