go-libwebp

Experimental translation from libwebp to Go source.
Log | Files | Refs | README | LICENSE

commit c6720b22ffa412fd2e74c76f2b8ebf21bb372d7f
parent fe80f51a22e3ccdf2b85f859fa603f0ecc41cb95
Author: Jack Mordaunt <jackmordaunt.dev@gmail.com>
Date:   Tue, 25 Jan 2022 21:59:04 +0800

docs: attribution to Chris Waldon

Signed-off-by: Jack Mordaunt <jackmordaunt.dev@gmail.com>

Diffstat:
MREADME.md | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -1,7 +1,7 @@ -# go-libwebp +# go-libwebp This is a ccgo translation from [libwebp](https://github.com/webmproject/libwebp/) -in the hope to bring webp codec into Go space. +in the hope to bring webp codec into Go space. `go run . megopher.png` @@ -15,3 +15,7 @@ Can consume JPEG and PNG images. - libwebp depends on libc bsearch, which modernc.org/libc doesn't provide; as such an experimental Go implementation is provided (that actually cheats by doing a simple linear search) - again, this should ideally be upstreamed to ccgo (providing a bsearch) +## Contributors + +This repo represents a joint effort between Chris Waldon (~whereswaldon) and myself. +Thanks Chris for figuring out the build process for compiling libwebp to Go!