diff --git a/modules/html_generator.py b/modules/html_generator.py index 2be53fc8..112c8ca0 100644 --- a/modules/html_generator.py +++ b/modules/html_generator.py @@ -139,7 +139,7 @@ def get_image_cache(path): old_p.rename(p) output_file = p - img.convert('RGB').save(output_file, format='PNG') + img.convert('RGBA').save(output_file, format='PNG') image_cache[path] = [mtime, output_file.as_posix()] return image_cache[path][1]