如何使用 tinypng 進行批量壓縮
來自專欄 sylan215
不管是博客還是產品中,都會涉及圖片的使用,但是如果圖片體檢太大,會影響使用體驗,所以網上有各種各樣的支持圖片壓縮的網站,tinypng 是其中的佼佼者。
今天要介紹的就是如何通過 python 腳本實現一鍵壓縮。
直接上代碼:
# -*- coding: utf-8 -*-"""腳本功能說明:使用 tinypng,一鍵批量壓縮指定文件(夾)所有文件"""import osimport sysimport tinifytinify.key = "你自己申請的 key" # AppKeydef 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(uKey 使用量已超,請更新 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,並一起豐富這個腳本的功能。
推薦閱讀:
※批量驗證IP代理匿名程度的方法
※教唆女生自殺、一年睡400人,戀愛為何變得危機四伏——揭秘批量生產渣男的組織
※如何在WORD+excel中實現批量列印信封、證書、獎狀...
※word文檔如何快速批量刪除英文而只保留中文?
※(1)[轉載]批量裁減和手縫,每一小塊都要畫線嗎?