我想在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坐标上放置新文本?