mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
705 B
Plaintext
26 lines
705 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# jpegoptim
|
|
|
|
> Optimise JPEG images.
|
|
> More information: <https://manned.org/jpegoptim>.
|
|
|
|
- Optimise a set of JPEG images, retaining all associated data:
|
|
|
|
`jpegoptim {{image1.jpeg image2.jpeg image3.jpeg ...}}`
|
|
|
|
- Optimise JPEG images, stripping all non-essential data:
|
|
|
|
`jpegoptim {{[-s|--strip-all]}} {{image1.jpeg image2.jpeg image3.jpeg ...}}`
|
|
|
|
- Force the output images to be progressive:
|
|
|
|
`jpegoptim --all-progressive {{image1.jpeg image2.jpeg image3.jpeg ...}}`
|
|
|
|
- Force the output images to have a fixed maximum filesize:
|
|
|
|
`jpegoptim {{[-S|--size]}} {{250k}} {{image1.jpeg image2.jpeg image3.jpeg ...}}`
|