1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/guetzli.md

17 lines
377 B
Markdown
Raw Normal View History

2018-08-21 16:40:56 +00:00
# guetzli
> JPEG image compression utility.
> More information: <https://github.com/google/guetzli>.
2018-08-21 16:40:56 +00:00
- Compress a JPEG image:
`guetzli {{input.jpg}} {{output.jpg}}`
- Create a compressed JPEG from a PNG:
2018-08-21 16:40:56 +00:00
`guetzli {{input.png}} {{output.jpg}}`
- Compress a JPEG with the desired visual quality (84-100):
2018-08-21 16:40:56 +00:00
`guetzli --quality {{quality_value}} {{input.jpg}} {{output.jpg}}`