aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2024-06-04 21:06:58 -0600
committerDaniel Eklöf <daniel@ekloef.se>2024-06-12 20:13:43 +0200
commit2ccd1b1099eb32f57a6fb3b91bfc2f8ed3fc1bca (patch)
treea6992b101c1ca950d48aa66a50b31035be558c16 /README.md
parent573c014568a7dd4facbca9cc6b9032996c18338e (diff)
downloadwbg-2ccd1b1099eb32f57a6fb3b91bfc2f8ed3fc1bca.tar.gz
jxl: add initial support for JPEG XL using libjxl
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md
index e0bb321..177b674 100644
--- a/README.md
+++ b/README.md
@@ -21,9 +21,13 @@ wallpaper _may_ be added in the future.
* libpng (optional)
* libjpeg (optional)
* libwebp (optional)
+* libjxl (optional)
+* libjxl_threads (optional)
-Note that if SVG support is disabled at least one of _libpng_, _libjpeg_ and
-_libwebp_ is required.
+Note that if SVG support is disabled at least one of _libpng_, _libjpeg_,
+_libwebp_ and _libjxl_ is required.
+
+_libjxl\_threads_ is recommended for better performance decoding JPEG XL images
### Compile time
@@ -41,10 +45,10 @@ ninja -C build
sudo ninja -C build install
```
-By default, PNG, JPEG and WebP support is auto-detected. You can force
+By default, PNG, JPEG, JPEG XL and WebP support is auto-detected. You can force
disable/enable them with the meson command line options
`-Dpng=disabled|enabled`, `-Djpeg=disabled|enabled` and
-`-Dwebp=disabled|enabled`.
+`-Dwebp=disabled|enabled` `-Djxl=disabled|enabled`.
SVG support is enabled by default (as it does not require additional
dependencies). You can disable it with the meson command line option
`-Dsvg=false`