我一直在研究网站的图像,发现.webp
格式比.jpeg
或.png
紧凑得多,在Docs上找到更多信息。
现在我有一个包含近25张图像的文件夹,我想将其全部转换为.webp
格式。谁能建议我如何仅使用python脚本而不使用在线工具进行全部转换。
答案 0 :(得分:2)
首先,您必须根据您的计算机(Windows | Linux)从here下载cwebp压缩器工具。
现在在提取C:\Program Files\
中的文件夹之后,您必须set path到cwebp.exe
,下面是我的路径
Path:: C:\Program Files\libwebp\bin
打开cmd,以检查您到目前为止是否已完成操作。
cmd> cwebp -version
cmd> python --version
现在超级简单,只需运行以下脚本,您便会获得所需的输出,或者您可以从here在github上下载我的repo。
# --cwebp_compressor.py--
# cmd> python cwebp_compressor.py folder-name 80
import sys
from subprocess import call
from glob import glob
#folder-name
path = sys.argv[1]
#quality of produced .webp images [0-100]
quality = sys.argv[2]
if int(quality) < 0 or int(quality) > 100:
print("image quality out of range[0-100] ;/:/")
sys.exit(0)
img_list = []
for img_name in glob(path+'/*'):
# one can use more image types(bmp,tiff,gif)
if img_name.endswith(".jpg") or img_name.endswith(".png") or img_name.endswith(".jpeg"):
# extract images name(image_name.[jpg|png]) from the full path
img_list.append(img_name.split('\\')[-1])
# print(img_list) # for debug
for img_name in img_list:
# though the chances are very less but be very careful when modifying the below code
cmd='cwebp \"'+path+'/'+img_name+'\" -q '+quality+' -o \"'+path+'/'+(img_name.split('.')[0])+'.webp\"'
# running the above command
call(cmd, shell=False)
# print(cmd) # for debug