summaryrefslogtreecommitdiffstats
path: root/scan-multi
diff options
context:
space:
mode:
Diffstat (limited to 'scan-multi')
-rwxr-xr-xscan-multi2
1 files changed, 1 insertions, 1 deletions
diff --git a/scan-multi b/scan-multi
index 44b580c..7c9cb7f 100755
--- a/scan-multi
+++ b/scan-multi
@@ -6,7 +6,7 @@ i=1
while [[ -e "out$i.pnm" ]]; do
img="out$i.pnm"
newname="$(printf "%s_%03d" "$time" "$i")"
- convert "$img" -normalize -quality 95 "$newname.jpg" && rm "$img"
+ convert "$img" -normalize -quality 70 "$newname.jpg" && rm "$img"
((i++))
done