I have a png picture which I show on a Frame as follows:
self.aaa = PhotoImage(file="some.png")
self.lbl1 = Label(self, image=self.aaa)
self.lbl1.pack()
The background of the picture is white and the background the Frame is darker. Can I somehow make the background of the Picture transparent without editing the picture, doesn't Tkinter allow that?