Python-Tkinter图形化界面设计(详细教程 ) (8)

1、添加背景

#插入文件图片 import tkinter as tk root = tk.Tk() #创建一个标签类, [justify]:对齐方式 textLabel = tk.Label(root,text="你在右边会看到一个图片,\n我在换个行", justify = tk.LEFT)#左对齐 textLabel.pack(side=tk.LEFT)#自动对齐,side:方位 #创建一个图片管理类 photo = tk.PhotoImage(file="18.png")#file:t图片路径 imgLabel = tk.Label(root,image=photo)#把图片整合到标签类中 imgLabel.pack(side=tk.RIGHT)#自动对齐 tk.mainloop()

在这里插入图片描述

import tkinter as tk root = tk.Tk() #增加背景图片 photo = tk.PhotoImage(file="背景.png") theLabel = tk.Label(root,          text="我是内容,\n请你阅读",#内容          justify=tk.LEFT,#对齐方式          image=photo,#加入图片          compound = tk.CENTER,#关键:设置为背景图片          font=("华文行楷",20),#字体和字号          fg = "white")#前景色 theLabel.pack() tk.mainloop()

在这里插入图片描述

#插入文件图片 import tkinter as tk root = tk.Tk() frame1 = tk.Frame(root)#这是上面的框架 frame2 = tk.Frame(root)#这是下面的框架 var = tk.StringVar()#储存文字的类 var.set("你在右边会看到一个图片,\n我在换个行")#设置文字 #创建一个标签类, [justify]:对齐方式,[frame]所属框架 textLabel = tk.Label(frame1,textvariable=var,          justify = tk.LEFT)#显示文字内容 textLabel.pack(side=tk.LEFT)#自动对齐,side:方位 #创建一个图片管理类 photo = tk.PhotoImage(file="18.png")#file:t图片路径 imgLabel = tk.Label(frame1,image=photo)#把图片整合到标签类中 imgLabel.pack(side=tk.RIGHT)#自动对齐 def callback():#触发的函数   var.set("你还真按了")#设置文字 #[frame]所属框架 ,text 文字内容 command:触发方法 theButton = tk.Button(frame2,text="我是下面的按钮",command=callback) theButton.pack()#自动对齐 frame1.pack(padx=10,pady=10)#上框架对齐 frame2.pack(padx=10,pady=10)#下框架对齐 tk.mainloop()

在这里插入图片描述


在这里插入图片描述

六、打开摄像头,显示

效果:

在这里插入图片描述


代码:

from tkinter import * import cv2 from PIL import Image,ImageTk def take_snapshot(): print("有人给你点赞啦!") def video_loop(): success, img = camera.read() # 从摄像头读取照片 if success: cv2.waitKey(100) cv2image = cv2.cvtColor(img, cv2.COLOR_BGR2RGBA)#转换颜色从BGR到RGBA current_image = Image.fromarray(cv2image)#将图像转换成Image对象 imgtk = ImageTk.PhotoImage(image=current_image) panel.imgtk1 = imgtk panel.config(image=imgtk) root.after(1, video_loop) camera = cv2.VideoCapture(0) #摄像头 root = Tk() root.title("opencv + tkinter") #root.protocol(\'WM_DELETE_WINDOW\', detector) panel = Label(root) # initialize image panel panel.pack(padx=10, pady=10) # root.config(cursor="arrow") btn = Button(root, text="点赞!", command=take_snapshot) btn.pack(fill="both", expand=True, padx=10, pady=10) video_loop() root.mainloop() # 当一切都完成后,关闭摄像头并释放所占资源 camera.release() cv2.destroyAllWindows()

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgzdxp.html