Python Forum
Tkinter TEXT background image
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Tkinter TEXT background image
#2
I don't understand- do you want a background image overlaid by the buttons or insert the image with the buttons? I don't the text widget is a great candidate for the first option, maybe a scrolled canvas with an image and buttons placed over.
the second try:
from PIL import Image, ImageTk
 
a = Tk()
img = Image.open("example.png")
image_ = ImageTk.PhotoImage(img)

scroll = Scrollbar(a, orient="vertical")
text = Text(a, width=25, height=15, wrap="none", yscrollcommand=scroll.set)
text.image_create("1.0", image=image_)
Reply


Messages In This Thread
Tkinter TEXT background image - by _ShevaKadu - Nov-01-2020, 01:03 PM
RE: Tkinter TEXT background image - by joe_momma - Nov-01-2020, 09:35 PM
RE: Tkinter TEXT background image - by _ShevaKadu - Nov-02-2020, 09:14 AM
RE: Tkinter TEXT background image - by deanhystad - Nov-01-2020, 10:27 PM
RE: Tkinter TEXT background image - by _ShevaKadu - Nov-02-2020, 09:12 AM
RE: Tkinter TEXT background image - by joe_momma - Nov-02-2020, 10:34 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Tkinter: An image and label are not appearing. emont 7 676 Mar-21-2024, 03:00 PM
Last Post: deanhystad
  Transparent window background, but not text on it muzicman0 7 2,903 Feb-02-2024, 01:28 AM
Last Post: Joically
  My Background Image Is Not Appearing (Python Tkinter) HailyMary 2 4,377 Mar-14-2023, 06:13 PM
Last Post: deanhystad
  [Tkinter] Updating tkinter text BliepMonster 5 6,096 Nov-28-2022, 01:42 AM
Last Post: deanhystad
  simple tkinter question function call not opening image gr3yali3n 5 3,468 Aug-02-2022, 09:13 PM
Last Post: woooee
  [Tkinter] Tkinter don't change the image DQT 2 1,639 Jul-22-2022, 10:26 AM
Last Post: menator01
  [Tkinter] The Text in the Label widget Tkinter cuts off the Long text in the view malmustafa 4 4,952 Jun-26-2022, 06:26 PM
Last Post: menator01
  [Tkinter] Background inactivity timer when tkinter window is not active DBox 4 2,948 Apr-16-2022, 04:04 PM
Last Post: DBox
  [Tkinter] Not able to get image as background in a Toplevel window finndude 4 3,935 Jan-07-2022, 10:10 PM
Last Post: finndude
  tkinter change the text of the checkbox zazas321 1 3,865 Sep-17-2021, 06:19 AM
Last Post: zazas321

Forum Jump:

User Panel Messages

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