Files
tldr/pages.zh/common/optipng.md

28 lines
569 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# optipng
> PNG文件优化工具。
> 更多信息:<https://optipng.sourceforge.net>。
- 使用默认设置压缩PNG
`optipng {{path/to/file.png}}`
- 使用最佳压缩压缩PNG
`optipng -o{{7}} {{path/to/file.png}}`
- 使用最快压缩压缩PNG
`optipng -o{{0}} {{path/to/file.png}}`
- 压缩PNG并添加交错
`optipng -i {{1}} {{path/to/file.png}}`
- 压缩PNG并保留所有元数据包括文件时间戳
`optipng -preserve {{path/to/file.png}}`
- 压缩PNG并移除所有元数据
`optipng -strip all {{path/to/file.png}}`