aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scanner/PhotoAlbum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scanner/PhotoAlbum.py b/scanner/PhotoAlbum.py
index ea4e6c2..aeb3087 100644
--- a/scanner/PhotoAlbum.py
+++ b/scanner/PhotoAlbum.py
@@ -260,7 +260,7 @@ class Photo(object):
gc.collect()
image.thumbnail((size, size), Image.ANTIALIAS)
try:
- image.save(thumb_path, "JPEG")
+ image.save(thumb_path, "JPEG", quality=88)
except KeyboardInterrupt:
os.unlink(thumb_path)
raise