91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用 tinypng怎么實現批量壓縮

發布時間:2021-08-10 17:36:31 來源:億速云 閱讀:171 作者:Leah 欄目:編程語言

使用 tinypng怎么實現批量壓縮,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

直接上代碼:

# -*- 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 文件夾中,如果要輸出到其他位置,可以自行修改腳本實現。

看完上述內容,你們掌握使用 tinypng怎么實現批量壓縮的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿拉尔市| 桦川县| 堆龙德庆县| 宁河县| 祁阳县| 定陶县| 宣恩县| 饶河县| 门源| 寻甸| 揭西县| 东丰县| 韶关市| 永吉县| 黄石市| 沙坪坝区| 那曲县| 吉安县| 边坝县| 澳门| 清原| 志丹县| 贵南县| 谢通门县| 蓬溪县| 华容县| 东台市| 德兴市| 尚志市| 和田市| 舞钢市| 临猗县| 钟山县| 临汾市| 商河县| 陇西县| 泰和县| 澄迈县| 兰溪市| 郓城县| 昌都县|