如何使用 tinypng 進行批量壓縮
阿新 • • 發佈:2018-07-27
所有 壓縮 字節 通用函數 git import pytho tiny Coding 不管是博客還是產品中,都會涉及圖片的使用,但是如果圖片體檢太大,會影響使用體驗,所以網上有各種各樣的支持圖片壓縮的網站,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 進行批量壓縮