From 2e96327a8ee4152148c12e425bf79e459f51205a Mon Sep 17 00:00:00 2001 From: Minsoo Kim Date: Fri, 14 Apr 2017 12:10:39 +0900 Subject: [PATCH] =?UTF-8?q?color=20profile=20=EC=82=AD=EC=A0=9C=ED=95=98?= =?UTF-8?q?=EB=8A=94=20=EC=8A=A4=ED=81=AC=EB=A6=BD=ED=8A=B8=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/gui/strip-image.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 app/gui/strip-image.sh 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 {} \; -- 2.1.4