diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-07-24 00:09:16 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-12-15 23:06:16 -0600 |
commit | 51de02c51f06bda67c40474d148e21d4717ba086 (patch) | |
tree | c6f035f4b8f2e085082b24b5d1f2554fa5418b65 /README.md | |
parent | 423f7dc6990b1cb5afde95f8383c44b1a4dce16a (diff) | |
download | wbg-51de02c51f06bda67c40474d148e21d4717ba086.tar.gz |
svg: initial support for SVG images, using nanosvg
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -22,7 +22,8 @@ wallpaper _may_ be added in the future. * libjpeg (optional) * libwebp (optional) -Note that at least one of _libpng_, _libjpeg_ and _libwebp_ is required. +Note that if SVG support is disabled at least one of _libpng_, _libjpeg_ and +_libwebp_ is required. ### Compile time @@ -44,9 +45,19 @@ By default, PNG, JPEG 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`. +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` ## Derivative work * https://codeberg.org/droc12345/wbg - adds support for directories with images, random, timer flags. + + +## License +Wbg is released under the [MIT license](LICENSE). + +Wbg (optionally) uses nanosvg, released under the [Zlib +license](3rd-party/nanosvg/LICENSE.txt). |