Please refer to this code and change it to your style:
def button_change():
button1.configure(image=loop_image)
frame = Tk()
frame.title('image')
play_image = PhotoImage(file="start.png")
loop_image = PhotoImage(file="stop.png")
button1 = Button(frame, image=play_image, command=button_change)
button1.place(x=15, y=450)
frame.mainloop()
This is output:
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…