Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Icon in tkinter
#4
Give this a try, I do not run Linux so I cannot test on that system.
def main():
    '''Docstring'''
    root = tk.Tk()
    root.title('Johnny\'s CookBook')
    img = tk.PhotoImage(file='/home/johnny/Desktop/CookBook/images/cookbook_logo.png')
    root.configure(width=img.width())
    root.resizable(width=False, height=False)
    photo = PhotoImage(file = 'images/ratt2b.png')
    root.iconphoto(False, photo)
    RootWindow(root)
    root.mainloop()
"Often stumped... But never defeated."
Reply


Messages In This Thread
Icon in tkinter - by menator01 - Apr-29-2020, 02:17 AM
RE: Icon in tkinter - by DT2000 - Apr-29-2020, 03:52 AM
RE: Icon in tkinter - by menator01 - Apr-29-2020, 05:07 AM
RE: Icon in tkinter - by DT2000 - Apr-29-2020, 05:27 AM
RE: Icon in tkinter - by menator01 - Apr-29-2020, 05:48 AM
RE: Icon in tkinter - by wuf - Apr-29-2020, 08:20 AM
RE: Icon in tkinter - by menator01 - Apr-29-2020, 11:15 AM
RE: Icon in tkinter - by menator01 - Apr-30-2020, 10:51 PM
RE: Icon in tkinter - by wuf - May-03-2020, 02:01 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Exclamation [PyQt] Setting icon on QAction from outside QGuiApplication gradlon93 3 1,768 Jan-04-2023, 11:37 AM
Last Post: gradlon93
  PyQt6 QAction with icon and string malonn 2 1,749 Sep-12-2022, 11:59 AM
Last Post: malonn
  how to remove icon ilyess68ysl 4 3,784 Oct-15-2021, 10:05 AM
Last Post: ilyess68ysl
  [Tkinter] Password Reveal Icon Evil_Patrick 2 4,712 Nov-29-2019, 02:20 PM
Last Post: Evil_Patrick
  [Tkinter] Window Icon Evil_Patrick 6 8,153 Oct-18-2019, 11:26 AM
Last Post: Evil_Patrick
  Button with Image Icon Friend 2 6,877 Jul-25-2019, 09:39 AM
Last Post: Friend
  [PyQt] Hide Dock Icon for QSystemTrayIcon App AeglosGreeenleaf 0 3,339 Jun-20-2019, 07:21 PM
Last Post: AeglosGreeenleaf
  [PyQt] How is this tray icon throbber done? JackDinn 7 4,861 Mar-05-2018, 02:19 PM
Last Post: JackDinn
  tkinter filedialog and pickle - custom icon question. kim07133 0 2,789 Jan-08-2018, 12:10 PM
Last Post: kim07133

Forum Jump:

User Panel Messages

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