gpt4 book ai didi

python - 打开并显示从本地文件夹中选择的图像

转载 作者:行者123 更新时间:2023-12-01 08:16:32 24 4
gpt4 key购买 nike

我是 Python 的新学习者,我想创建一个简单的程序,用户可以在其中打开并显示从本地文件夹中选择的图像 (png)。

def imageopen():

root.filename = filedialog.askopenfilename(initialdir="/", title="Select file",
filetypes=(("png files", "*.png"), ("all files", "*.*")))
print(root.filename)


button = Button(text="Open Image", width=30, command=imageopen).pack()

所以我有上面的代码从本地选择任何图像,它返回图像的路径作为结果。我的问题是,如何使用该路径来显示图像?

预先感谢您的帮助。

最佳答案

您可以使用 Pillow,因为它已预装在 anaconda 中。只需做一个:

from PIL import Image
my_image=Image.open("path/to/IMAGE/file")
my_image.show()

关于python - 打开并显示从本地文件夹中选择的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54958900/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com