使用 tinypng怎么實(shí)現(xiàn)批量壓縮,相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。
創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),老河口企業(yè)網(wǎng)站建設(shè),老河口品牌網(wǎng)站建設(shè),網(wǎng)站定制,老河口網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷(xiāo),網(wǎng)絡(luò)優(yōu)化,老河口網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M(mǎn)足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專(zhuān)業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶(hù)成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
直接上代碼:
# -*- coding: utf-8 -*- """腳本功能說(shuō)明:使用 tinypng,一鍵批量壓縮指定文件(夾)所有文件""" import os import sys import tinify tinify.key = "你自己申請(qǐng)的 key" # AppKey def get_file_dir(file): """獲取文件目錄通用函數(shù)""" 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 進(jìn)行壓縮,中文前面的 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 字節(jié)' % old_size) new_size = os.path.getsize(output_file) print(u'文件保存地址:%s' % output_file) print(u'壓縮后文件大小:%d 字節(jié)' % new_size) print(u'壓縮比: %d%%' % ((old_size - new_size) * 100 / old_size)) except tinify.errors.AccountError: print(u'Key 使用量已超,請(qǐng)更新 Key,并使用命令[Usage] %s [filepath] [key]運(yùn)行' % 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'目標(biāo)文件(夾)不存在,請(qǐng)確認(rèn)后重試。') 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])
python -m pip install tinify
到 https://tinypng.com/developers 申請(qǐng)自己的 key,每個(gè) key 每個(gè)月可以壓縮 500 個(gè)文件。
申請(qǐng)完 key 之后,更新到代碼段中的:
tinify.key = "your key" # AppKey
然后帶參數(shù)執(zhí)行腳本即可。
帶的第一個(gè)參數(shù)是必選的,可以是文件,也可以是文件夾。
第二個(gè)參數(shù)是可選的,自定義 key,如果輸入了第三個(gè)參數(shù),則優(yōu)先使用自定義 key。
壓縮后的文件,默認(rèn)輸出到當(dāng)前腳本所在目錄下的 tinypng 文件夾中,如果要輸出到其他位置,可以自行修改腳本實(shí)現(xiàn)。
看完上述內(nèi)容,你們掌握使用 tinypng怎么實(shí)現(xiàn)批量壓縮的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!