文本小部件tkinter复制图像选项

时间:2018-06-10 00:11:47

标签: python image text tkinter

我正在创建一个简单的GUI,我需要能够在最后复制文本小部件中的图像,我能够复制文本,但我无法复制图像,有没有办法做到这一点?这是我的代码。

from tkinter import *
root = Tk()
photo = PhotoImage(file="C:\\Users\\ElchananPeres\\Desktop\\capture222.PNG")
text = Text(root)
text.pack()
text.image_create(END,image=photo)
root.mainloop()

0 个答案:

没有答案