summaryrefslogtreecommitdiff
path: root/it.class
diff options
context:
space:
mode:
authorChristian Schneider2007-09-14 15:42:26 +0000
committerChristian Schneider2007-09-14 15:42:26 +0000
commit6ec76f855d6a824f06ac6e912d3079c0655326fe (patch)
tree5d88eaf8e036b44739300013a88009bfddb2d262 /it.class
parent762fcc342cd6afd42e4335380f30555b72a61924 (diff)
downloaditools-6ec76f855d6a824f06ac6e912d3079c0655326fe.tar.gz
itools-6ec76f855d6a824f06ac6e912d3079c0655326fe.tar.bz2
itools-6ec76f855d6a824f06ac6e912d3079c0655326fe.zip
Change default quality to convert default of 75
Diffstat (limited to 'it.class')
-rw-r--r--it.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it.class b/it.class
index 51bf790..9595080 100644
--- a/it.class
+++ b/it.class
@@ -393,7 +393,7 @@ function imageconvert($p)
$p += array('type' => $type, 'types' => "gif,jpg,png,bmp,tif,jp2");
if (it::match(",$type,", ",{$p['types']},")) # Valid type?
- $result = it::exec("convert 2>&1 -flatten -quality 80 {-opts} {in} {type}:{out}", array('-opts' => array('-thumbnail' => $p['size'])), $p) === "";
+ $result = it::exec("convert 2>&1 -flatten -quality 75 {-opts} {in} {type}:{out}", array('-opts' => array('-thumbnail' => $p['size'])), $p) === "";
return $result;
}