美文网首页程序员python加油站
如何使用 tinypng 进行批量压缩

如何使用 tinypng 进行批量压缩

作者: 亦无知 | 来源:发表于2018-07-27 12:18 被阅读180次

    不管是博客还是产品中,都会涉及图片的使用,但是如果图片体检太大,会影响使用体验,所以网上有各种各样的支持图片压缩的网站,tinypng 是其中的佼佼者。

    今天要介绍的就是如何通过 python 脚本实现一键压缩。

    直接上代码:

    # -*- coding: utf-8 -*-
    
    """脚本功能说明:使用 tinypng,一键批量压缩指定文件(夹)所有文件"""
    
    import os
    import sys
    import tinify
    
    tinify.key = "你自己申请的 key" # AppKey
    
    def get_file_dir(file):
        """获取文件目录通用函数"""
        fullpath = os.path.abspath(os.path.realpath(file))
        return os.path.dirname(fullpath)
    
    def check_suffix(file_path):
        """检查指定文件的后缀是否符合要求"""
        file_path_lower = file_path.lower()
        return (file_path_lower.endswith('.png')
                or file_path_lower.endswith('.jpg')
                or file_path_lower.endswith('.jpeg'))
    
    def compress_by_tinypng(input_file):
        """使用 tinypng 进行压缩,中文前面的 u 是为了兼容 py2.7"""
        if not check_suffix(input_file):
            print(u'只支持png\\jpg\\jepg格式文件:' + input_file)
            return
    
        file_name = os.path.basename(input_file)
        output_path = os.path.join(get_file_dir(sys.argv[0]), 'tinypng')
        output_file = os.path.join(output_path, file_name)
        print(output_file)
        if not os.path.isdir(output_path):
            os.makedirs(output_path)
    
        try:
            source = tinify.from_file(input_file)
            source.to_file(output_file)
            print(u'文件压缩成功:' + input_file)
            old_size = os.path.getsize(input_file)
            print(u'压缩前文件大小:%d 字节' % old_size)
            new_size = os.path.getsize(output_file)
            print(u'文件保存地址:%s' % output_file)
            print(u'压缩后文件大小:%d 字节' % new_size)
            print(u'压缩比: %d%%' % ((old_size - new_size) * 100 / old_size))
        except tinify.errors.AccountError:
            print(u'Key 使用量已超,请更新 Key,并使用命令[Usage] %s [filepath] [key]运行'
                  % os.path.basename(sys.argv[0]))
    
    def check_path(input_path):
        """如果输入的是文件则直接压缩,如果是文件夹则先遍历"""
        if os.path.isfile(input_path):
            compress_by_tinypng(input_path)
        elif os.path.isdir(input_path):
            dirlist = os.walk(input_path)
            for root, dirs, files in dirlist:
                for filename in files:
                    compress_by_tinypng(os.path.join(root, filename))
        else:
            print(u'目标文件(夹)不存在,请确认后重试。')
    
    if __name__ == '__main__':
        len_param = len(sys.argv)
        if len_param != 2 and len_param != 3:
            print('[Usage] %s [filepath]' % os.path.basename(sys.argv[0]))
        elif len_param == 3:
            tinify.key = sys.argv[2]
            check_path(sys.argv[1])
        else:
            check_path(sys.argv[1])
    

    使用说明

    1. 请先安装 tinify 的依赖库:

    python -m pip install tinify
    

    2. 申请 tinify key

    https://tinypng.com/developers 申请自己的 key,每个 key 每个月可以压缩 500 个文件。

    3. 执行脚本

    申请完 key 之后,更新到代码段中的:

    tinify.key = "your key" # AppKey
    

    然后带参数执行脚本即可。

    带的第一个参数是必选的,可以是文件,也可以是文件夹。

    第二个参数是可选的,自定义 key,如果输入了第三个参数,则优先使用自定义 key。

    压缩后的文件,默认输出到当前脚本所在目录下的 tinypng 文件夹中,如果要输出到其他位置,可以自行修改脚本实现。

    PS:已使用 Python2.7 和 Python3.4 亲测有效,其他 Python 版本如果有异常,请反馈。

    更详细的说明请跳转到项目地址:https://github.com/sylan215/compress-with-tinypng,欢迎大家 star,并一起丰富这个脚本的功能。

    相关文章

      网友评论

        本文标题:如何使用 tinypng 进行批量压缩

        本文链接:https://www.haomeiwen.com/subject/kpwwmftx.html