Found first issue for pale colors

This commit is contained in:
Matthias Bisping 2023-01-31 14:16:33 +01:00
parent 26180373a0
commit a3fece8096

View File

@ -185,7 +185,7 @@ Color = Tuple[int, int, int]
def base_texture(request, size):
texture = Image.open(TEST_PAGE_TEXTURES_DIR / (request.param + ".jpg"))
texture = texture.resize(size)
texture.putalpha(255)
# texture.putalpha(255) # ISSUE 1!!!
return texture