1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 09:42:07 +02:00

cjxl, djxl: add page (#13513)

Co-authored-by: spageektti <git@spageektti.cc>
This commit is contained in:
Managor 2024-08-27 11:47:51 +03:00 committed by GitHub
parent 4b43011819
commit 1291c79484
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 30 additions and 0 deletions

17
pages/linux/cjxl.md Normal file
View file

@ -0,0 +1,17 @@
# cjxl
> Compress images to JPEG XL.
> Accepted input extensions are PNG, APNG, GIF, JPEG, EXR, PPM, PFM, PAM, PGX, and JXL.
> More information: <https://github.com/libjxl/libjxl>.
- Convert an image to JPEG XL:
`cjxl {{path/to/image.ext}} {{path/to/output.jxl}}`
- Set quality to lossless and maximize compression of the resulting image:
`cjxl --distance 0 --effort 9 {{path/to/image.ext}} {{path/to/output.jxl}}`
- Display an extremely detailed help page:
`cjxl --help --verbose --verbose --verbose --verbose`

13
pages/linux/djxl.md Normal file
View file

@ -0,0 +1,13 @@
# djxl
> Decompress JPEG XL images.
> Accepted output extensions are PNG, APNG, JPEG, EXR, PGM, PPM, PNM, PFM, PAM, EXIF, XMP and JUMBF.
> More information: <https://github.com/libjxl/libjxl>.
- Decompress a JPEG XL image to another format:
`djxl {{path/to/image.jxl}} {{path/to/output.ext}}`
- Display an extremely detailed help page:
`djxl --help --verbose --verbose --verbose --verbose`