python对多文件夹图片压缩,成品+源码

查看 67|回复 3
作者:矢岛舞美   


QQ截图20230530145214.jpg (26.72 KB, 下载次数: 0)
下载附件
2023-5-30 15:06 上传

python代码:
[Asm] 纯文本查看 复制代码import os
import sys
from PIL import Image
from concurrent.futures import ThreadPoolExecutor
import multiprocessing
def is_image_file(file):
    try:
        with Image.open(file) as img:
            return img.format in ['JPEG', 'PNG', 'BMP', 'GIF', 'TIFF']
    except IOError:
        return False
def compress_image(input_file):
    # 打开图像文件
    with Image.open(input_file) as img:
        # 获取图像的格式
        file_format = img.format
        try:
            # 保存压缩后的图像
            img.save(input_file, format=file_format, optimize=True)
        except OSError:
            # 如果遇到缺少 EXIF 信息的情况,重新保存图像
            img.save(input_file, format=file_format, optimize=True, exif=b'')
    print(f"图像已成功压缩: {input_file}")
def compress_images_in_folders(thread_count):
    image_files = []
    # 遍历文件夹,找到所有图像文件
    for root, _, files in os.walk(os.getcwd()):
        for file in files:
            input_file = os.path.join(root, file)
            # 检查文件扩展名
            _, ext = os.path.splitext(input_file)
            if ext.lower() in ['.jpg', '.jpeg', '.png', '.bmp', '.gif', '.tiff']:
                if is_image_file(input_file):
                    image_files.append(input_file)
    # 使用线程池进行图像压缩
    with ThreadPoolExecutor(max_workers=thread_count) as executor:
        executor.map(compress_image, image_files)
if __name__ == "__main__":
    thread_count = multiprocessing.cpu_count()
    print(f"使用 {thread_count} 个线程进行图像压缩")
    compress_images_in_folders(thread_count)
成品地址:https://wwqb.lanzout.com/iGGT00xpr0ub   密码:2big
使用方法:放到要处理的文件夹,双击即可运行,比如:A文件夹下有B、C、D、E、F文件夹,将软件放到A目录下,即可对BCDEF下的图片进行压缩并对图片进行原位替换。

文件夹, 图像

Siono01   

谢谢分享。 顺便问一下这个可以压缩tga格式的嘛 这种压缩会不会损坏原始的的画质和质量的啊谢谢
111wdw   

这个软件很强大,值得收藏
jmsdqwl   

   py 不会 php会
您需要登录后才可以回帖 登录 | 立即注册

返回顶部