summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extra_plugins/gallery.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra_plugins/gallery.py b/extra_plugins/gallery.py
index 84d5a6f..3bde0cb 100644
--- a/extra_plugins/gallery.py
+++ b/extra_plugins/gallery.py
@@ -106,7 +106,7 @@ class Photo():
# TODO: Write other useful transforms here!
- self.image.save(self.output_file, "JPEG")
+ self.image.convert("RGB").save(self.output_file, "JPEG")