Fix #2052766 [scrolling down books in latest version give error](https://bugs.launchpad.net/calibre/+bug/2052766)

This commit is contained in:
Kovid Goyal 2024-02-09 12:13:47 +05:30
parent f947ecf414
commit 8db9707e2e
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -694,7 +694,7 @@ def convert_PIL_image_to_pixmap(im, device_pixel_ratio=1.0):
if im.mode == "RGBA":
fmt = QImage.Format.Format_RGBA8888
data = im.tobytes("raw", "RGBA")
elif im.mode == "RGB":
elif im.mode in ("RGB", "CMYK"):
fmt = QImage.Format.Format_RGBX8888
data = im.convert("RGBA").tobytes("raw", "RGBA")
elif im.mode == "1":