python打開圖片(這次是tk,不是opencv)
2020-03-07 18:07 作者:一心想當(dāng)網(wǎng)紅的李老師 | 我要投稿
希望內(nèi)嵌一下圖片。試了好幾家的程序,總算找了一個比較靠譜的。
# -*- coding: utf-8 -*-
"""
Created on Sat Mar ?7 18:03:50 2020
@author: liyan
"""
import tkinter
from tkinter import *
from PIL import Image,ImageTk
from tkinter.filedialog import askopenfilename
import time
root = Tk()
root.geometry('500x500')
root.title('圖片處理')
def choosepic():
? ? path_ = askopenfilename()
? ? path.set(path_)
? ? img_open = Image.open(file_entry.get())
? ? img = ImageTk.PhotoImage(img_open)
? ? image_label.config(image=img)
? ? image_label.image = img ?# keep a reference
path = StringVar() ?###調(diào)用一個全局變量是解決問題的關(guān)鍵啊
Button(root, text='選擇圖片', command=choosepic).pack()
file_entry = Entry(root, state='readonly', text=path)
#file_entry.pack()?
image_label = Label(root)
image_label.pack()
root.mainloop()
標(biāo)簽: