Convert 16-bit greyscale to 8-bit when saving as JPEG

This commit is contained in:
missionfloyd 2023-02-09 02:13:49 -07:00
parent ea9bd9fc74
commit 463ab84180
1 changed files with 2 additions and 0 deletions

View File

@ -553,6 +553,8 @@ def save_image(image, path, basename, seed=None, prompt=None, extension='png', i
elif extension.lower() in (".jpg", ".jpeg", ".webp"):
if image_to_save.mode == 'RGBA':
image_to_save = image_to_save.convert("RGB")
elif image_to_save.mode == 'I;16':
image_to_save = image_to_save.point(lambda p: p * 0.0038910505836576).convert("L")
image_to_save.save(temp_file_path, format=image_format, quality=opts.jpeg_quality)