https://github.com/lkiarest/image-compress
批量压缩图片尺寸
https://github.com/lkiarest/image-compress
Last synced: about 1 year ago
JSON representation
批量压缩图片尺寸
- Host: GitHub
- URL: https://github.com/lkiarest/image-compress
- Owner: lkiarest
- Created: 2019-09-30T03:31:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T01:25:45.000Z (almost 3 years ago)
- Last Synced: 2025-01-21T08:45:09.152Z (over 1 year ago)
- Language: JavaScript
- Size: 64.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 批量图片压缩
自动遍历多级目录下的图片,按指定比率对图片进行批量压缩。
安装依赖
```
yarn
```
修改配置
```
{
"root": "D:\\imgs",
"format": [".jpg", ".png"],
"radio": 0.5, // 压缩比率(图片尺寸)
"removeOld": false, // 是否删除源文件,若不删除会将源文件重命名
}
```
执行
```
node index.js
```