From 1291c7948428e970f63f4f99a63dcb4dbad24c5a Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 27 Aug 2024 11:47:51 +0300 Subject: [PATCH] cjxl, djxl: add page (#13513) Co-authored-by: spageektti --- pages/linux/cjxl.md | 17 +++++++++++++++++ pages/linux/djxl.md | 13 +++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 pages/linux/cjxl.md create mode 100644 pages/linux/djxl.md diff --git a/pages/linux/cjxl.md b/pages/linux/cjxl.md new file mode 100644 index 0000000000..fd2fa7e31b --- /dev/null +++ b/pages/linux/cjxl.md @@ -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: . + +- 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` diff --git a/pages/linux/djxl.md b/pages/linux/djxl.md new file mode 100644 index 0000000000..a6d39b41b6 --- /dev/null +++ b/pages/linux/djxl.md @@ -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: . + +- 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`