03-26-2021, 12:12 PM
@KlausGünther
I'm not in a position to help since I do not know this code nor do I have a comparable display I can use to test the code. However, there's evidence that the author of the code had problems with rendering color artwork:
I suggest you communicate with this repo's maintainer (sharkusk aka Marcus Kellerman) concerning your coverart.
Regards,
Kent
I'm not in a position to help since I do not know this code nor do I have a comparable display I can use to test the code. However, there's evidence that the author of the code had problems with rendering color artwork:
Code:
(excerpt from https://github.com/sharkusk/luma.examples/blob/master/examples/moode.py)
# Work around for 1.5" OLED. Fails due to mode being RGB, but draw requires RGBA
if device.mode == "1":
Artwork['img'] = img.resize(newSize).convert("L").convert(device.mode)
else:
# RGBA shows blank screen, L shows properly
Artwork['img'] = img.resize(newSize).convert("L")
I suggest you communicate with this repo's maintainer (sharkusk aka Marcus Kellerman) concerning your coverart.
Regards,
Kent