我环顾四周,找到了很多答案,但似乎都没有用。
我可以使用枕头在Tkinter窗口中获取图片,它是透明背景上的白色圆圈。图片是png,我用Image.mode
来发现它是我所知的正确类型(RGBA)。
显示在其位置上的是一个与图像大小相同的白色正方形。
我正在使用python3,应该提到我使用pip删除了PIL并安装了Pillow。
我要使用的圈子是https://i.imgur.com/I6l0qQY.png
我的代码如下
from tkinter import *
from PIL import ImageTk, Image
win = Tk()
win.title("Transparency")
win.config(bg='#636363')
load = Image.open("on.png")
render = ImageTk.PhotoImage(file="on.png")
img = Label(win, image=render)
img.image = render
img.place(x=0, y=0)
win.mainloop()
除了图像是透明的以外,一切都正常。