Python Forum
Tkinter button images not showing up - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Tkinter button images not showing up (/thread-40647.html)



Tkinter button images not showing up - lunacy90 - Aug-31-2023

I have the following code



from tkinter import *
from tkinter import messagebox

def read_account_balance():
    try:
        with open("money.txt","r") as file:
            money=float(file.read())
    except FileNotFoundError:
        with open("money.txt","w")as file:
            money=0.00
            file.write(money)
    except ValueError:
        with open("money.txt","w")as file:
            money=0.00
            file.write(money)
    return money
window=Tk()
def deposit_money():
    pass

def withdraw_money():
    pass

def money_transfer():
    pass

def display_account_balance():
    budget=read_account_balance()
    messagebox.showinfo(title="Balance Information",message=f"Account Balance is {budget}0")
read_account_balance()
window.config(padx=50,pady=50)
window.title("Bank App")
canvas=Canvas(width=400,height=275)
bank_pic=PhotoImage(file="./bank.png")
picture=canvas.create_image(200,149,image=bank_pic)
canvas.grid(row=1,column=0)
withdraw_img=PhotoImage("./withdraw.jpg")
deposit_img=PhotoImage("./deposit.jpg")
money_transfer_pic=PhotoImage("./money_transfer_pic.png")
deposit_button=Button(text="Deposit Money",image=deposit_img,command=deposit_money)
deposit_button.grid(row=1,column=1)
deposit_button.img_reference = deposit_img
withdraw_button=Button(text="Withdraw Money",image=withdraw_img,command=withdraw_money)
withdraw_button.grid(row=2,column=1)
withdraw_button.img_reference = withdraw_img

money_transfer_button=Button(text="Money Transfer",image=money_transfer_pic,command=money_transfer)
money_transfer_button.grid(row=1,column=2)
money_transfer_button.img_reference = money_transfer_pic

account_balanace_image=PhotoImage(file="./account-balance.png")
account_balanace_button=Button(text="Account Balance",image=account_balanace_image,command=display_account_balance)
account_balanace_button.img_reference=account_balanace_image
window.mainloop()
The problem is that the buttons (with their images do not appear in the window). If i change the canvas dimensions i can almost see some of the buttons to the left of the image but their images still dont appear. Unless i have confused rows with columns the grid assignments would have the buttons be placed under the picture with their respective images. Please help


RE: Tkinter button images not showing up - deanhystad - Aug-31-2023

I am not going to help you until you fix your post by adding the correct python tags. You've been warned about this on several occasions.


RE: Tkinter button images not showing up - lunacy90 - Aug-31-2023

(Aug-31-2023, 05:22 PM)deanhystad Wrote: I am not going to help you until you fix your post by adding the correct python tags. You've been warned about this on several occasions.

Thanks. Sorry i tried the insert code snippet but it wouldnt work. Hope my edit is now correct according to the rules.


RE: Tkinter button images not showing up - deanhystad - Aug-31-2023

Much better. Thankyou.

I don't understand what you are trying to do. You make a canvas and add that to the window. Then you make some buttons, but you are not telling any of the buttons where they are supposed to appear. By default they appear in the root window, but that is already filled with canvas. What is the desired result?


RE: Tkinter button images not showing up - lunacy90 - Aug-31-2023

(Aug-31-2023, 05:33 PM)deanhystad Wrote: Much better. Thankyou.

I don't understand what you are trying to do. You make a canvas and add that to the window. Then you make some buttons, but you are not telling any of the buttons where they are supposed to appear. By default they appear in the root window, but that is already filled with canvas. What is the desired result?

I am trying to add the pictures to the button widgets and have the buttons appear underneath the main picture of the bank. I thought the .grid function does that with the row and column args. The functionality is nonexistent for the time being i just wanted to make the GUI first


RE: Tkinter button images not showing up - deanhystad - Aug-31-2023

When you make the buttons you need to tell them their parent is "window". For example:
deposit_button=Button(window, text="Deposit Money" image=deposit_img, command=deposit_money)
But that is not your problem. As I said, the default is put the widgets in the root window.

The problem is this:
bank_pic=PhotoImage(file="./bank.png")  # Works
withdraw_img=PhotoImage("./withdraw.jpg")  # Does not work
See the difference? No, it is not the image type.


RE: Tkinter button images not showing up - lunacy90 - Aug-31-2023

(Aug-31-2023, 05:43 PM)deanhystad Wrote: When you make the buttons you need to tell them their parent is "window". For example:
deposit_button=Button(window, text="Deposit Money" image=deposit_img, command=deposit_money)
But that is not your problem. As I said, the default is put the widgets in the root window.

The problem is this:
bank_pic=PhotoImage(file="./bank.png")  # Works
withdraw_img=PhotoImage("./withdraw.jpg")  # Does not work
See the difference? No, it is not the image type.
You are a boss. Thanks a lot again


RE: Tkinter button images not showing up - deanhystad - Aug-31-2023

The first positional argument for PhotoImage() is name, a string that is used to tag the image. If you don't provide a name, one is generated for you, like "pyimage1". file is a named argument. Your code was creating empty images named "./withdraw.jpg" and "./deposit.jpg".