mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 17:42:31 +00:00
22 lines
470 B
Plaintext
22 lines
470 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# guetzli
|
|
|
|
> JPEG image compression utility.
|
|
> More information: <https://github.com/google/guetzli>.
|
|
|
|
- Compress a JPEG image:
|
|
|
|
`guetzli {{input.jpg}} {{output.jpg}}`
|
|
|
|
- Create a compressed JPEG from a PNG:
|
|
|
|
`guetzli {{input.png}} {{output.jpg}}`
|
|
|
|
- Compress a JPEG with the desired visual quality (84-100):
|
|
|
|
`guetzli --quality {{quality_value}} {{input.jpg}} {{output.jpg}}`
|