我正在参与「掘金启航计划」

一、前言

hello,咱们好,我是干饭大王,打工人每天最幸福的时间莫过于干饭了 ,然而最纠结的时间莫过于今日吃什么呢? ,于是乎我用python写了一个干饭神器,今日共享给咱们,别忘了给我点赞 保藏 评论哟~

话不多说,先看效果图:

python干饭神器---今天吃什么?python告诉你
python干饭神器---今天吃什么?python告诉你

还有躲藏 “福利” 帮你的完结减肥大业:

python干饭神器---今天吃什么?python告诉你

在本篇博客中,咱们将会介绍怎么运用Python编写一个带有界面的可切换的轮播图程序。轮播图程序能够从指定的文件夹中读取图片,并能够主动切换到下一张图片。假如图片比较大,则能够进行缩放以习惯窗口巨细。

二、准备工作

在开端编写程序之前,咱们需求装置以下依靠项:

  • tkinter:用于创建GUI界面。
  • Pillow:用于处理图片。

tkinter是python一个内置集成库,Pillow能够运用pip指令来装置:

pip install tkinter Pillow

当装置完结后,咱们就能够开端编写程序了。

三、编写代码

说了折磨多,你们是不是十分等待我的代码呀,看代码之前,别忘了先点个重视哟~,接下来,进入代码编写环节

2.1 导入所需的库

首先,咱们需求导入所需的库:

import os
import tkinter as tk
from PIL import ImageTk, Image

其间,os库用于读取指定目录下的文件列表;tkinter库用于创建GUI界面;Pillow库用于处理图片。

2.2 创建GUI界面

初始化窗口,并设置窗口的标题,以及窗口的初始巨细。

mywindow=tk.Tk()
mywindow.title('今日吃什么')
mywindow.minsize(500,500)

2.3 设置窗口居中显现

咱们首先 winfo_screenwidthwinfo_screenheight 函数获取屏幕的尺度(screenwidth和screenheight),并依据屏幕尺度计算了窗口的巨细和位置。最终运用 geometry 函数 将应用程序窗口设置到屏幕中心。

def getWindowsSize(width, height, screen_width, screen_height):
    x = int(screen_width / 2 - width / 2)
    y = int(screen_height / 2 - height / 2)
    return '{}x{}+{}+{}'.format(width, height, x, y)
screenwidth = mywindow.winfo_screenwidth()
# 得到屏幕宽度
screenheight = mywindow.winfo_screenheight()
print("screenheight:%s,screenheight:%S ",screenheight,screenwidth)
# x tkinter窗口间隔屏幕左面间隔
mywindow_x = 650
# y tkinter窗口间隔屏幕上边间隔
mywindow_y = 575
mywindow.geometry(getWindowsSize(mywindow_x,mywindow_y,screenwidth,screenheight))

2.4 设置切换按钮和当前食物的label 以及图片展现 切换方法

photoDefault 用来读取默许首图的图片,imageNameList用来寄存 imgs文件下的一切文件途径,nextChoice() 用于当你不满意第一次随机的食物,点击 不满意?换一个 按钮时切换下一个食物。mylab 用来展现图片,eatlab 用来展现食物的中文名,mybut 用于切换。

photoDefault = ImageTk.PhotoImage(Image.open("imgs/今日吃点啥.gif"))
path = 'imgs/'
imagNamelist = os.listdir(path)
def nextChoice():
    # 从头排序文件
    random.shuffle(imagNamelist)
    imagePath=imagNamelist[0]
    print('今日吃',imagePath)
    finalImg = Image.open("imgs/"+imagePath)
    photo = ImageTk.PhotoImage(finalImg.resize((400, 400)))
    mylab.config(image = photo)
    mylab.image = photo
    mybut.config(text='不满意?换一个')
    eatlab.config(text=imagePath.split(".")[0])
mylab=tk.Label(master=mywindow,
               image= photoDefault
               )
mylab.pack()
eatlab=tk.Label(master=mywindow,
                text='今日吃点啥?',
                fg='white',
                bg='green',
                font=('微软雅黑',14),
                width=20,
                height=3
               )
eatlab.pack()
mybut=tk.Button(mywindow,
                text='点我决议',
                font=('微软雅黑',12),
                width=15,
                height=3,
                command=nextChoice
                )
mybut.pack()
mywindow.mainloop()

2.5 完整代码

import os
import tkinter as tk
import random
from PIL import Image, ImageTk
mywindow=tk.Tk()
mywindow.title('今日吃什么')
mywindow.minsize(500,500)
def getWindowsSize(width, height, screen_width, screen_height):
    x = int(screen_width / 2 - width / 2)
    y = int(screen_height / 2 - height / 2)
    return '{}x{}+{}+{}'.format(width, height, x, y)
screenwidth = mywindow.winfo_screenwidth()
# 得到屏幕宽度
screenheight = mywindow.winfo_screenheight()
print("screenheight:%s,screenheight:%S ",screenheight,screenwidth)
# x tkinter窗口间隔屏幕左面间隔
# mywindow_x = mywindow.winfo_x()
# # y tkinter窗口间隔屏幕上边间隔
# mywindow_y = mywindow.winfo_y()
# x tkinter窗口间隔屏幕左面间隔
mywindow_x = 650
# y tkinter窗口间隔屏幕上边间隔
mywindow_y = 575
mywindow.geometry(getWindowsSize(mywindow_x,mywindow_y,screenwidth,screenheight))
photoDefault = ImageTk.PhotoImage(Image.open("imgs/今日吃点啥.gif"))
path = 'imgs/'
imagNamelist = os.listdir(path)
def nextChoice():
    # 从头排序文件
    random.shuffle(imagNamelist)
    imagePath=imagNamelist[0]
    print('今日吃',imagePath)
    finalImg = Image.open("imgs/"+imagePath)
    photo = ImageTk.PhotoImage(finalImg.resize((400, 400)))
    mylab.config(image = photo)
    mylab.image = photo
    mybut.config(text='不满意?换一个')
    eatlab.config(text=imagePath.split(".")[0])
mylab=tk.Label(master=mywindow,
               image= photoDefault
               )
mylab.pack()
eatlab=tk.Label(master=mywindow,
                text='今日吃点啥?',
                fg='white',
                bg='green',
                font=('微软雅黑',14),
                width=20,
                height=3
               )
eatlab.pack()
mybut=tk.Button(mywindow,
                text='点我决议',
                font=('微软雅黑',12),
                width=15,
                height=3,
                command=nextChoice
                )
mybut.pack()
mywindow.mainloop()

四、打包exe运转程序,便利在其他windows电脑上运用

4.1 装置pyinstaller打包程序

要想打包成windows下能够运转的 exe 能够运用pip装置如下依靠包,

pip3 install pyinstaller

4.2 执行打包

进入咱们的源代码目录,比如我的就是:D:\project\opensource\t-open\python-labs\src\eat , 然后执行如下指令即可, eat2.py 是咱们写的python源代码,eatSomething.exe 是咱们最终打完包的程序称号。

pyinstaller -F -w eat2.py -n eatSomething.exe

python干饭神器---今天吃什么?python告诉你

4.3 移动img文件,运转程序

打包完结后 会在 dist目录生成 eatSomething.exe 应用程序,因为打包的时候咱们并没有把 imgs 文件夹的图片拷贝进去,所以咱们能够手动把 imgs 悉数拷贝到 dist 文件夹下,当然你也能够 把你喜爱的食物照片放到 imgs 文件夹下面。

python干饭神器---今天吃什么?python告诉你
python干饭神器---今天吃什么?python告诉你
然后咱们就能够双击 eatSomething.exe
python干饭神器---今天吃什么?python告诉你

祝咱们不在纠结今日吃什么,做一个果断 坚毅 的人✌️✌️✌️ 假如你喜爱的话,就不要吝惜你的一键三连了~ 谢谢咱们!

这里是文章的表达神器一切代码+图片,对文章不是太懂得小伙伴们能够自取一下哟:今日吃点啥的源代码地址

  1. 码云地址:gitee.com/T-OPEN/pyth…
  2. 源代码和程序下载地址 :download.csdn.net/download/we…