改回jpg格式,增加压缩比,增加一些照片

This commit is contained in:
神楽坂雅詩
2019-01-22 00:13:11 +08:00
parent e47a003d62
commit 79b0c52511
211 changed files with 1690 additions and 1071 deletions

View File

@ -1 +1,2 @@
for file in *.jpg; do echo $file ${file%%.*}.webp; convert -resize 1920x1920 $file ${file%%.*}.webp; done
# 在原始高清文件夹下运行,压制 webp 图片
for file in *.jpg; do echo $file ${file%%.*}.webp; convert -resize 1920x1920 $file ../${file%%.*}.webp; done