potential bug fix

This commit is contained in:
CiscoTheWolf 2023-05-18 11:32:45 +02:00
parent 415f2f9987
commit a69575552f

View file

@ -33,7 +33,8 @@ def pure_pil_alpha_to_color_v2(image, color=(0, 0, 0)):
return background
image = Image.open("../testImg.bmp")
RGBImage = pure_pil_alpha_to_color_v2(image.thumbnail((128,62), Image.ANTIALIAS))
image.thumbnail((128,62), Image.ANTIALIAS)
RGBImage = pure_pil_alpha_to_color_v2()