使用python自制桌面宠物,好玩!——枫原万叶桌宠,可以直接打包成exe去跟朋友炫耀。。。

大家好,我是小黄。

今天我们使用python实现一个桌面宠物。只需要gif动态图片就行。超级简单容易上手。

#完整源代码可在下方图片免费获取

一:下载相关的库文件。

复制代码
我们本次使用到的库文件为:tkinter和pyautogui

下载命令:

pip install tkinter 

pip install pyautogui

二.我们把gif导入,放在DestTop.py同级下面即可。

DeskTop.py(不完整的)

import tkinter as tk
import pyautogui as pt
import random
import os
from PIL import Image, ImageTk

# 获取主屏幕分辨率
WIDTH, HEIGHT = pt.size()
taskbarHeight = 40

# 将人物大小减少 40%
imgWidth, imgHeight = 670, 550

# 计算右侧10%区域的起始位置
right_margin = int(WIDTH * 0.1)
posX = WIDTH - imgWidth - right_margin  # 右侧10%区域内的初始X位置
posY = 0  # 初始Y位置

# 创建主窗口
root = tk.Tk()
root.geometry(f"{imgWidth}x{imgHeight}+{posX}+{posY}")
root.overrideredirect(1)
root.configure(bg='black')
root.attributes('-transparentcolor', 'black')
root.wm_attributes('-topmost', 1)

# 右键菜单
def create_context_menu(event):
    context_menu.post(event.x_root, event.y_root)

def exit_application():
    root.quit()

context_menu = tk.Menu(root, tearoff=0)
context_menu.add_command(label="退出", command=exit_application)

def load_images(file_path):
    images = []
    try:
        img = Image.open(file_path)
        for frame in range(img.n_frames):  # 使用 Pillow 获取帧数
            img.seek(frame)  # 定位到每一帧
            images.append(ImageTk.PhotoImage(img.copy()))  # 复制当前帧并转换为 PhotoImage
    except Exception as e:
        print(f"Error loading frames from {file_path}: {e}")
    return images

# 获取当前脚本的目录
current_dir = os.path.dirname(os.path.abspath(__file__))

# 更新 GIF 文件路径
idleRight = load_images(os.path.join(current_dir, "bar.gif"))
idleLeft = load_images(os.path.join(current_dir, "bar1.gif"))
runRight = load_images(os.path.join(current_dir, "bar1.gif"))
runLeft = load_images(os.path.join(current_dir, "bar3.gif"))
fall = load_images(os.path.join(current_dir, "bar1.gif"))

status = {
    0: fall,
    1: idleRight,
    2: idleLeft,
    3: runRight,
    4: runLeft
}
status_num = 0

canvas = tk.Canvas(root, width=imgWidth, height=imgHeight, bg='black', highlightthickness=0)
canvas.pack()

player = canvas.create_image(imgWidth // 2, imgHeight // 2, image=idleLeft[0])

# 说话文本列表
phrases = [
    "海鸥别叫啦,从今天起,我也是漂泊者啊",
    "深山踏红叶,耳畔闻鹿鸣",
    "可叹,落叶飘零",
    "我很喜欢枫叶,可惜,枫叶红时,总多离别。",
    "拾花鸟之一趣,照月风之长路",
    "闲聊?自然!"
]

def changeStatus():
    global status_num
    status_num = random.randint(1, 4)
    root.after(random.randint(1000, 5000), changeStatus)

def falling():
    global status_num, posY
    if root.winfo_y() + imgHeight < HEIGHT - taskbarHeight:
        status_num = 0
        posY += 10  # 增加每次掉落的高度
        root.geometry(f"{imgWidth}x{imgHeight}+{posX}+{posY}")
    elif root.winfo_y() + imgHeight >= HEIGHT - taskbarHeight and status_num == 0:
        status_num = 1
    root.after(10, falling)  # 保持掉落速度

运行效果:

打包为exe可执行文件:

pyinstaller --onefile --noconsole --exclude-module numpy --exclude-module pandas --add-data "您的绝对路径\\bar.gif;." --add-data "您的绝对路径\\bar1.gif;." --add-data "您的绝对路径\\bar2.gif;." --add-data "您的绝对路径\\bar3.gif;." DestTop.py

完整源代码和gif资料包请下方获取👇↓↓↓

相关推荐
数据小小爬虫几秒前
如何使用Python爬虫按关键字搜索AliExpress商品:代码示例与实践指南
开发语言·爬虫·python
好一点,更好一点15 分钟前
systemC示例
开发语言·c++·算法
不爱学英文的码字机器18 分钟前
[操作系统] 环境变量详解
开发语言·javascript·ecmascript
martian66523 分钟前
第17篇:python进阶:详解数据分析与处理
开发语言·python
无码不欢的我26 分钟前
使用vscode在本地和远程服务器端运行和调试Python程序的方法总结
ide·vscode·python
五味香27 分钟前
Java学习,查找List最大最小值
android·java·开发语言·python·学习·golang·kotlin
时韵瑶32 分钟前
Scala语言的云计算
开发语言·后端·golang
金融OG34 分钟前
99.8 金融难点通俗解释:净资产收益率(ROE)
大数据·python·线性代数·机器学习·数学建模·金融·矩阵
卷卷的小趴菜学编程36 分钟前
c++之List容器的模拟实现
服务器·c语言·开发语言·数据结构·c++·算法·list
幼儿园老大*1 小时前
【系统架构】如何设计一个秒杀系统?
java·经验分享·后端·微服务·系统架构