diff options
author | Christian Schneider | 2011-02-18 18:18:34 +0000 |
---|---|---|
committer | Christian Schneider | 2011-02-18 18:18:34 +0000 |
commit | c616e7b840258e98a86afd103efd8b1f152ebf66 (patch) | |
tree | d87652fda6cb7191e79ebff788e19c9ee9275b07 /it.class | |
parent | e73fe3180c1208277c385b2d14a8fe7c031fd177 (diff) | |
download | itools-c616e7b840258e98a86afd103efd8b1f152ebf66.tar.gz itools-c616e7b840258e98a86afd103efd8b1f152ebf66.tar.bz2 itools-c616e7b840258e98a86afd103efd8b1f152ebf66.zip |
Switch from ImageMagick to GraphicsMagick (new ImageMagick is too broken)
Diffstat (limited to 'it.class')
-rw-r--r-- | it.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -538,7 +538,7 @@ static function imageconvert($p) $p['-opts'] = array('-thumbnail' => $p['size']) + (array)$p['-opts']; if (in_array($type, explode(',', $p['types']))) # Valid type? - $cmdoutput = it::exec('convert 2>&1 -flatten -quality 75 {-opts} {in} {type}:{out} || echo "SHELL ERROR $?"', $p); + $cmdoutput = it::exec('gm convert 2>&1 -flatten -quality 75 {-opts} {in} {type}:{out} || echo "SHELL ERROR $?"', $p); return $cmdoutput === ""; } |