Hello everybody,
I've a somewhat odd issue displaying a .png image onto a Tkinter canvas.
The image is surrounded by a grey frame.
Here below an excerpt of the relevant code and by the way I'm running under windows xp.
The same thing happens with the menu of the gui, it stays grey whatever colour I set.
Any suggestion about this issue?
self.frameCanvas = Frame(master, bg="white", bd=0, relief=FLAT)
self.frameCanvas.grid(column=1, row=0, rowspan=2, sticky=NE, padx=10, pady=5)
#
self.logo = Canvas(self.frameCanvas, width=70, height=70, bg="white", bd=0)
self.logo.create_image(36, 36, image=self.Logo_TCTK)
self.logo.grid()
self.logo.image = self.Logo_TCTK
Thank you all