Python Forum
[Tkinter] Load image and show in label
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Load image and show in label
#4
Hey,
a couple comments on your code:
In python classes use the self instance, using self instead of root will allow you to eliminate the global variables. the use of self in classes
when you created the label in the init:
root.up_window_label = tk.Label(image=root.img_show)
you recreate it in your function: def load_image(root):
it can be configured-
self.up_window_label.config(image= self.new_img)
finally instead of creating canvas windows for each button and label you can use place for exact placement.
self.headline_label = tk.Label(self.canvas,text="IMAGE PROCESSING", bg='azure3')
self.headline_label.place(x=80,y=20)
Reply


Messages In This Thread
Load image and show in label - by ko_fal - Oct-23-2022, 10:21 AM
RE: Load image and show in label - by Larz60+ - Oct-23-2022, 11:47 AM
RE: Load image and show in label - by ko_fal - Oct-23-2022, 11:56 AM
RE: Load image and show in label - by joe_momma - Oct-23-2022, 06:59 PM
RE: Load image and show in label - by ko_fal - Oct-23-2022, 10:04 PM
RE: Load image and show in label - by deanhystad - Oct-24-2022, 03:20 AM
RE: Load image and show in label - by ko_fal - Oct-24-2022, 12:26 PM
RE: Load image and show in label - by deanhystad - Oct-24-2022, 06:20 PM
RE: Load image and show in label - by ko_fal - Oct-25-2022, 09:20 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Tkinter: An image and label are not appearing. emont 7 748 Mar-21-2024, 03:00 PM
Last Post: deanhystad
  [Tkinter] image in label not showing? rwahdan 2 8,294 Jun-25-2021, 10:27 AM
Last Post: rwahdan
  tkinter: Image to Label Maryan 10 5,383 Oct-29-2020, 01:48 PM
Last Post: joe_momma
  [Tkinter] Returning always the last image into Label Lucas_Ribeiro 1 2,146 May-08-2020, 05:56 PM
Last Post: deanhystad
  Refresh image in label after every 1s using simple function jenkins43 1 5,521 Jul-28-2019, 02:49 PM
Last Post: Larz60+
  [Tkinter] Please help, my Label does not show up on my gui ? robertinoc 2 2,714 Jun-12-2019, 05:58 PM
Last Post: robertinoc
  [Tkinter] Image does not show in treeview. KevinBrown 3 7,611 May-05-2019, 11:47 PM
Last Post: KevinBrown
  Can't load a png image tkinter Pythenx 2 10,093 May-04-2019, 05:43 PM
Last Post: woooee

Forum Jump:

User Panel Messages

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