菜鸟IT的博客 >> Python
tkinter通过url展示网络图片 | tkinter打开显示网络图片
tkinter: GUI库
requests: 下载图片数据
io: 存放图片数据
pillow: 转换为图片并展示在tkinter中
————————————————————
import io
from PIL import Image, ImageTk
import tkinter as tk
import requests
root = tk.Tk()
# 图片链接
url = "https://www.python.org/static/img/python-logo@2x.png"
# 下载图片数据
image_bytes = requests.get(url).content
# 将数据存放到data_stream中
data_stream = io.BytesIO(image_bytes)
# 转换为图片格式
pil_image = Image.open(data_stream)
# 获取图片的宽度和高度
w, h = pil_image.size
# 获取图片的文件名
fname = url.split('/')[-1]
sf = "{} ({}x{})".format(fname, w, h)
# 设置窗口title
root.title(sf)
# 将pil格式的图片转换为tk格式的image
tk_image = ImageTk.PhotoImage(pil_image)
# 创建个label组件, root作为父节点
label = tk.Label(root, image=tk_image, bg='black')
# 设置一些padding
label.pack(padx=5, pady=5)
root.mainloop()
菜鸟IT博客[2022.04.10-21:14] 访问:287