Blame view

app/gui/strip-image.sh 239 Bytes
2e96327a8   김민수   color profile 삭제하...
1
2
3
4
5
6
7
8
9
10
11
12
13
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 {} \;