Revert "make logo just RGB instead of RGBA"

This reverts commit 9019c3f93e.
This commit is contained in:
Christoph Haas 2026-01-17 21:51:21 +01:00
parent 8fa71eb5ab
commit 32972dd5da

View file

@ -6,7 +6,7 @@ from PIL import Image, ImageDraw, ImageFont
import lib.display import lib.display
def start(stop_event, args): def start(stop_event, args):
image_buffer = Image.open("images/piamedia.png").convert("RGB") image_buffer = Image.open("images/piamedia.png").convert("RGBA")
lib.display.matrix.show(image_buffer) lib.display.matrix.show(image_buffer)
while not stop_event.is_set(): while not stop_event.is_set():
sleep(0.2) sleep(0.2)