add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,36 @@
# pngquant
> PNG转换器和有损图像压缩工具。
> 更多信息:<https://pngquant.org/>.
- 尽可能压缩特定的PNG并将结果写入新文件
`pngquant {{path/to/file.png}}`
- 压缩特定的PNG并覆盖原始文件
`pngquant --ext .png --force {{path/to/file.png}}`
- 尝试以自定义质量压缩特定的PNG如果低于最小值则跳过
`pngquant --quality {{0-100}} {{path/to/file.png}}`
- 压缩特定的PNG并将颜色数减少到64
`pngquant {{64}} {{path/to/file.png}}`
- 压缩特定的PNG并且如果文件大于原文件则跳过
`pngquant --skip-if-larger {{path/to/file.png}}`
- 压缩特定的PNG并移除元数据
`pngquant --strip {{path/to/file.png}}`
- 压缩特定的PNG并保存到指定路径
`pngquant {{path/to/file.png}} --output {{path/to/file.png}}`
- 压缩特定的PNG并显示进度
`pngquant --verbose {{path/to/file.png}}`