Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
cmake/ | H | 25-Apr-2025 | - | 471 | 404 | |
doc/ | H | 25-Apr-2025 | - | 3,304 | 2,521 | |
examples/ | H | 25-Apr-2025 | - | 8,257 | 6,812 | |
extras/ | H | 25-Apr-2025 | - | 7,486 | 7,092 | |
fuzz_seed_corpus/ | H | 25-Apr-2025 | - | |||
gradle/wrapper/ | H | 25-Apr-2025 | - | 6 | 5 | |
imageio/ | H | 25-Apr-2025 | - | 3,568 | 2,611 | |
infra/ | H | 25-Apr-2025 | - | 909 | 630 | |
m4/ | H | 25-Apr-2025 | - | 336 | 300 | |
man/ | H | 25-Apr-2025 | - | 1,240 | 1,178 | |
sharpyuv/ | H | 25-Apr-2025 | - | 2,031 | 1,538 | |
src/ | H | 25-Apr-2025 | - | 69,349 | 52,633 | |
swig/ | H | 25-Apr-2025 | - | 8,553 | 7,054 | |
tests/ | H | 25-Apr-2025 | - | 7,240 | 6,810 | |
webp_js/ | H | 25-Apr-2025 | - | 218 | 183 | |
.cmake-format.py | H A D | 25-Apr-2025 | 8.2 KiB | 241 | 66 | |
.gitattributes | H A D | 25-Apr-2025 | 133 | 7 | 6 | |
.gitignore | H A D | 25-Apr-2025 | 837 | 57 | 56 | |
.mailmap | H A D | 25-Apr-2025 | 781 | 20 | 19 | |
.pylintrc | H A D | 25-Apr-2025 | 14.2 KiB | 442 | 339 | |
.style.yapf | H A D | 25-Apr-2025 | 29 | 2 | 2 | |
AUTHORS | H A D | 25-Apr-2025 | 3 KiB | 68 | 67 | |
Android.bp | H A D | 25-Apr-2025 | 8.5 KiB | 351 | 308 | |
Android.mk | H A D | 25-Apr-2025 | 8.4 KiB | 311 | 241 | |
CMakeLists.txt | H A D | 25-Apr-2025 | 31.5 KiB | 849 | 767 | |
CONTRIBUTING.md | H A D | 25-Apr-2025 | 2.6 KiB | 79 | 54 | |
COPYING | H A D | 25-Apr-2025 | 1.5 KiB | 31 | 24 | |
ChangeLog | H A D | 25-Apr-2025 | 249.5 KiB | 4,777 | 4,776 | |
LICENSE | H A D | 25-Apr-2025 | 2.9 KiB | 54 | 45 | |
METADATA | H A D | 25-Apr-2025 | 519 | 20 | 18 | |
MODULE_LICENSE_BSD | HD | 25-Apr-2025 | 0 | |||
Makefile.am | H A D | 25-Apr-2025 | 155 | 10 | 7 | |
Makefile.vc | H A D | 25-Apr-2025 | 18.4 KiB | 532 | 461 | |
NEWS | H A D | 25-Apr-2025 | 14 KiB | 331 | 299 | |
NOTICE | H A D | 25-Apr-2025 | 1.5 KiB | 31 | 24 | |
OWNERS | H A D | 25-Apr-2025 | 256 | 8 | 7 | |
PATENTS | H A D | 25-Apr-2025 | 1.4 KiB | 24 | 21 | |
PRESUBMIT.py | H A D | 25-Apr-2025 | 8.8 KiB | 246 | 180 | |
README.android | H A D | 25-Apr-2025 | 353 | 11 | 8 | |
README.md | H A D | 25-Apr-2025 | 1.5 KiB | 54 | 36 | |
autogen.sh | H A D | 25-Apr-2025 | 34 | 3 | 1 | |
build.gradle | H A D | 25-Apr-2025 | 11.4 KiB | 445 | 430 | |
codereview.settings | H A D | 25-Apr-2025 | 170 | 5 | 4 | |
configure.ac | H A D | 25-Apr-2025 | 28.5 KiB | 806 | 724 | |
gradle.properties | H A D | 25-Apr-2025 | 451 | 15 | 11 | |
gradlew | H A D | 25-Apr-2025 | 5.6 KiB | 184 | 125 | |
gradlew.bat | H A D | 25-Apr-2025 | 2.9 KiB | 101 | 76 | |
iosbuild.sh | H A D | 25-Apr-2025 | 5.7 KiB | 179 | 137 | |
makefile.unix | H A D | 25-Apr-2025 | 16.9 KiB | 540 | 428 | |
xcframeworkbuild.sh | H A D | 25-Apr-2025 | 9.5 KiB | 277 | 213 |
README.android
1URL: https://chromium.googlesource.com/webm/libwebp 2Version: v1.4.0 3License: Google BSD like 4 5Local modifications: 6- LOCAL_LICENSE_KINDS and related variables added to **/Android.mk 7 8The Android.bp file creates WebP decoder and encoder static libraries which 9can be added to any application by adding libwebp-decode and libwebp-encode to 10'static_libs'. 11
README.md
1# WebP Codec 2 3``` 4 __ __ ____ ____ ____ 5 / \\/ \/ _ \/ _ )/ _ \ 6 \ / __/ _ \ __/ 7 \__\__/\____/\_____/__/ ____ ___ 8 / _/ / \ \ / _ \/ _/ 9 / \_/ / / \ \ __/ \__ 10 \____/____/\_____/_____/____/v1.4.0 11``` 12 13WebP codec is a library to encode and decode images in WebP format. This package 14contains the library that can be used in other programs to add WebP support, as 15well as the command line tools 'cwebp' and 'dwebp' to compress and decompress 16images respectively. 17 18See https://developers.google.com/speed/webp for details on the image format. 19 20The latest source tree is available at 21https://chromium.googlesource.com/webm/libwebp 22 23It is released under the same license as the WebM project. See 24https://www.webmproject.org/license/software/ or the "COPYING" file for details. 25An additional intellectual property rights grant can be found in the file 26PATENTS. 27 28## Building 29 30See the [building documentation](doc/building.md). 31 32## Encoding and Decoding Tools 33 34The examples/ directory contains tools to encode and decode images and 35animations, view information about WebP images, and more. See the 36[tools documentation](doc/tools.md). 37 38## APIs 39 40See the [APIs documentation](doc/api.md), and API usage examples in the 41`examples/` directory. 42 43## Bugs 44 45Please report all bugs to the issue tracker: https://bugs.chromium.org/p/webp 46 47Patches welcome! See [how to contribute](CONTRIBUTING.md). 48 49## Discuss 50 51Email: [email protected] 52 53Web: https://groups.google.com/a/webmproject.org/group/webp-discuss 54