代码拉取完成,页面将自动刷新
同步操作将从 sarsgame/tools 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#coding:utf-8
#/usr/bin/python
import os
import sys
import os.path
import shutil
import tinify
temPath = os.getcwd()+'/'+'temDir' # 临时目录,注意该脚本最后是要删掉这个临时目录的
tinify.key = "R47FL3zlFJmmyrTcyp1PgpCFcRDM6Ldf" # 刚刚申请的API KEY
version = "0.0.1" # 版本
# 压缩的核心
def compress_core(inputFile, outputFile, img_width):
source = tinify.from_file(inputFile)
if img_width is not -1:
resized = source.resize(method = "scale", width = img_width)
resized.to_file(outputFile)
else:
source.to_file(outputFile)
# 压缩一个文件夹下的图片
def compress_path(path, width):
print ("compress_path-------------------------------------")
fromFilePath = path # 源路径
print ("fromFilePath=%s" %fromFilePath)
for root, dirs, files in os.walk(fromFilePath):
print ("root = %s" %root)
print ("dirs = %s" %dirs)
print ("files= %s" %files)
for name in files:
fileName, fileSuffix = os.path.splitext(name)
if fileSuffix == '.png' or fileSuffix == '.jpg' or fileSuffix == '.jpeg':
fromfile = os.path.join(root,name)
tofile = os.path.join(temPath,name)
print (fromfile)
print (tofile)
compress_core(fromfile, tofile, width)
shutil.copy2(tofile, fromfile)# 将压缩后的文件覆盖原文件
if __name__ == "__main__":
if not os.path.exists(temPath):
os.mkdir(temPath)
if len(sys.argv)==2:
compress_path(sys.argv[1],-1)
if len(sys.argv)==3:
compress_path(sys.argv[1],sys.argv[2])
shutil.rmtree(temPath)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。