標題:
調整圖片大小
[打印本頁]
作者:
tonyh
時間:
2023-8-26 16:14
標題:
調整圖片大小
[attach]16344[/attach]
import tkinter as tk
from PIL import ImageTk, Image
win=tk.Tk()
win.title("調整圖片大小")
win.resizable(0,0)
img=Image.open("pic/01.jpg")
w=img.width
h=img.height
print(w, h)
img2=img.resize((int(w*0.7),int(h*0.7)))
pi=ImageTk.PhotoImage(img2)
# img3=Image.open("pic/01.jpg").resize((200,150))
# img3=Image.open("pic/01.jpg").resize((int(img.width*0.5),int(img.height*0.5)))
# pi=ImageTk.PhotoImage(img3)
lb=tk.Label(win,image=pi).pack()
win.mainloop()
複製代碼
作者:
王捷恩
時間:
2023-8-26 16:43
import tkinter as tk
from PIL import ImageTk, Image
win=tk.Tk()
win.title("調整圖片大小")
win.resizable(0,0)
img=Image.open("pic/01.jpg")
w=img.width
h=img.height
print(w, h)
img2=img.resize((int(w*5),int(h*2)))
pi=ImageTk.PhotoImage(img2)
lb=tk.Label(win,image=pi).pack()
win.mainloop()
複製代碼
作者:
李沛昂
時間:
2023-8-26 16:45
import tkinter as tk
from PIL import ImageTk, Image
win=tk.Tk()
win.title("顯示圖片")
win.resizable(0,0)
img=Image.open("pic/01.jpg")
w=img.width
h=img.height
print(w,h)
img2=img.resize((int(w*0.7),int(h*0.3)))
pi=ImageTk.PhotoImage(img2)
lb=tk.Label(win,image=pi).pack()
win.mainloop()
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2