wie kann ich bei phyton, buttons auf ein bild legen?
img = ImageTk.PhotoImage(Image.open("H:\Schule\stratego-aussen.jpg"))
panel = Label(root, image = img)
panel.pack(side = "bottom", fill = "both", expand = "yes")
root.mainloop()
but = Button(root, text = "Tutorial", bg = "red", fg="white", command = tutorial)
but.pack()
but = Button(root, text = "Zusatsfaktoren", bg = "red", fg="white", command = zusatzfaktoren)
but.pack()
but = Button(root, text = "Fraktionen", bg = "red", fg="white", command = fraktionen)
but.pack()
but = Button(root, text = "Impressum", bg = "red", fg="white", command = impressum)
but.pack()
da sieht man nur das bild ohne die buttons. möchte es aber so gestalten, dass die buttons neben oder auf dem bild sind (zumindestens sollte man die buttons sehen) weiß einer von euch rat?
img = ImageTk.PhotoImage(Image.open("H:\Schule\stratego-aussen.jpg"))
panel = Label(root, image = img)
panel.pack(side = "bottom", fill = "both", expand = "yes")
root.mainloop()
but = Button(root, text = "Tutorial", bg = "red", fg="white", command = tutorial)
but.pack()
but = Button(root, text = "Zusatsfaktoren", bg = "red", fg="white", command = zusatzfaktoren)
but.pack()
but = Button(root, text = "Fraktionen", bg = "red", fg="white", command = fraktionen)
but.pack()
but = Button(root, text = "Impressum", bg = "red", fg="white", command = impressum)
but.pack()
da sieht man nur das bild ohne die buttons. möchte es aber so gestalten, dass die buttons neben oder auf dem bild sind (zumindestens sollte man die buttons sehen) weiß einer von euch rat?