如何在窗口Tkinter的某些部分放置文本

时间:2016-11-09 12:47:46

标签: python image tkinter

我想在pokedex图片上放置API中的某些文字。

import tkinter

from PIL import ImageTk, Image


im = Image.open(r'pokedex.png')

root = tkinter.Tk()


tkimage = ImageTk.PhotoImage(im)

b = tkinter.Label(root, image=tkimage, text="Hello", compound=tkinter.CENTER).pack() # Put it in the display window


root.mainloop() # Start the GUI

目前我有这个,但我想在图像的其他部分添加更多文字。如何在X和Y坐标上放置新文本?

0 个答案:

没有答案