Commit 2e96327a8ee4152148c12e425bf79e459f51205a

Authored by 김민수
1 parent 820c4bf31d
Exists in master and in 2 other branches fhd, fhd-demo

color profile 삭제하는 스크립트 추가

Showing 1 changed file with 14 additions and 0 deletions   Show diff stats
app/gui/strip-image.sh
... ... @@ -0,0 +1,14 @@
  1 +#!/bin/sh
  2 +
  3 +CONVERT_CHECK=`convert -version`
  4 +if [ $? -ne 0 ]
  5 +then
  6 + echo ""
  7 + echo "INSTALL imagemagick"
  8 + echo ""
  9 + echo " sudo apt-get install imagemagick"
  10 + exit 1
  11 +fi
  12 +
  13 +
  14 +find oven_control/images -name *.png -exec convert {} -strip {} \;
... ...