Python Forum
Problem about image and button
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem about image and button
#4
You need to keep the image variable. I think tableau, the image, was destroyed when the local variable tableau no longer exists. I tested the code below and it works for me
class Brittachoix(Frame):
    def __init__(self, root):
        super().__init__(root)
        self.tableau = PhotoImage(file="image.png").zoom(4) 
        Canvasbritta = Canvas(self, width=largeur, height=hauteur, bg="#FFFFFF")
        TABLEAU = Canvasbritta.create_image(540,340, image=self.tableau)
        txt = Canvasbritta.create_text(540,570,text="Bonjour", font="Arial 28 italic", fill="red")
        Canvasbritta.pack()
        self.pack()
Reply


Messages In This Thread
Problem about image and button - by scotesse - Apr-27-2020, 08:03 AM
RE: Problem about image and button - by deanhystad - Apr-27-2020, 08:46 AM
RE: Problem about image and button - by scotesse - Apr-27-2020, 09:01 AM
RE: Problem about image and button - by deanhystad - Apr-27-2020, 09:31 AM
RE: Problem about image and button - by scotesse - Apr-27-2020, 10:09 AM
RE: Problem about image and button - by menator01 - Apr-27-2020, 10:01 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] canvas image problem DPaul 4 6,420 Nov-24-2021, 07:06 AM
Last Post: DPaul
  [Tkinter] Why does the image for the button not appear? finndude 4 2,070 Oct-21-2021, 06:41 PM
Last Post: deanhystad
  problem with radio button crook79 3 3,684 Aug-12-2021, 02:30 PM
Last Post: deanhystad
  [Tkinter] image inside button rwahdan 4 7,021 Jul-12-2021, 08:49 PM
Last Post: deanhystad
  tkinter showing image in button rwahdan 3 5,598 Jun-16-2021, 06:08 AM
Last Post: Yoriz
  tkinter button image Nick_tkinter 4 4,020 Mar-04-2021, 11:33 PM
Last Post: deanhystad
  tkinter python button position problem Nick_tkinter 3 3,554 Jan-31-2021, 05:15 AM
Last Post: deanhystad
  [Tkinter] Button click problem using OOP JohnB 5 3,587 Oct-21-2020, 12:43 PM
Last Post: JohnB
  Problem with Submit button Tkinter Reldaing 2 3,631 Jan-05-2020, 01:58 AM
Last Post: balenaucigasa
  [PyQt] Problem how to click a button inside a group box? mart79 2 3,421 Aug-05-2019, 01:21 PM
Last Post: mart79

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020