欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用python来保存win10的聚焦图片

程序员文章站 2022-05-26 22:29:39
...
# wallpapers.py

import os
import shutil
from PIL import Image

# 聚焦图片目录,大致路径如下
opath=r'C:\Users\Administrator\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets'
# 这是win10默认的桌面背景轮播幻灯片所在的目录
dpath=r'C:\Windows\Web\Wallpaper\Theme1'

for file in os.listdir(opath):
    ofile = os.path.join(opath, file) # 源文件
    dfile = os.path.join(dpath, file + '.jpg') # 目标文件

    # 判断目标文件是否存在
    if os.path.exists(dfile):
        print(file, '已存在,跳过')
        continue

    # 通过尺寸判断是否复制该图片
    x, y = Image.open(ofile).size 
    if (x >= 1920 and y >= 1080 and x / y > 1.5):
        shutil.copyfile(ofile, os.path.join(dpath, file + '.jpg'))
        print(os.path.join(dpath, file + '.jpg'))
    else:
        print(file, '尺寸不符,跳过')

再建立个wallpapers.bat文件

@ECHO OFF

python F:\MyWorkPlace\wallpapers.py

放到计划任务中,触发器设置为登录时候启动,并使用最高权限运行
使用python来保存win10的聚焦图片

相关标签: 技巧 python