1 Star 1 Fork 6

liujin1992112/tools

forked from sarsgame/tools 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tinypng.py 1.65 KB
一键复制 编辑 原始数据 按行查看 历史
cgw0827 提交于 2019-11-19 19:07 . “aadd tinypng
#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)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/storecodes/tools.git
git@gitee.com:storecodes/tools.git
storecodes
tools
tools
master

搜索帮助