Fix color space on CMYK images

This commit is contained in:
Timmy Welch 2022-12-06 08:38:24 -08:00
parent a64d753d77
commit da01dde2b9
No known key found for this signature in database

View File

@ -161,7 +161,7 @@ class IssueIdentifier:
return b""
output = io.BytesIO()
cropped_im.save(output, format="PNG")
cropped_im.convert("RGB").save(output, format="PNG")
cropped_image_data = output.getvalue()
output.close()