# -*- coding:utf-8 -*-
import os
import sys
from tkinter import *
import tkinter.filedialog as tk
from PIL import Image
def selectPath():
path_ = tk.askopenfilename()
path.set(path_)
def convertFormat():
for item in os.listdir(path.get()):
if item.endswith('.jpg') or item.endswith('.png'):
filePath = path.get() + '/' + item
im = Image.open(filePath)
im.save(filePath + '.webp', 'webp')
os.remove(filePath)
root = Tk()
path = StringVar()
Label(root, text="目标路径:").grid(row=0, column=0)
Entry(root, textvariable=path).grid(row=0, column=1)
Button(root, text="路径选择", command=selectPath).grid(row=0, column=2)
Button(root, text="开始转换", command=convertFormat).grid(row=0, column=3)
root.mainloop()
批量webp图片转换图形界面的工具
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《批量webp图片转换图形界面的工具》
文章链接:https://www.gebizhan.com/1737.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。
文章名称:《批量webp图片转换图形界面的工具》
文章链接:https://www.gebizhan.com/1737.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。