├── .github └── workflows │ └── test.yml ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── jpegxl.go ├── jpegxl_dynamic.go ├── jpegxl_test.go ├── jpegxl_wazero.go ├── lib ├── LICENSE.libjxl ├── Makefile.decode ├── Makefile.encode ├── decode.c ├── decode.wasm.gz ├── encode.c └── encode.wasm.gz ├── purego_darwin.go ├── purego_other.go ├── purego_unix.go ├── purego_windows.go └── testdata ├── test.jxl ├── test16.jxl └── test8.jxl /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/go.sum -------------------------------------------------------------------------------- /jpegxl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/jpegxl.go -------------------------------------------------------------------------------- /jpegxl_dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/jpegxl_dynamic.go -------------------------------------------------------------------------------- /jpegxl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/jpegxl_test.go -------------------------------------------------------------------------------- /jpegxl_wazero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/jpegxl_wazero.go -------------------------------------------------------------------------------- /lib/LICENSE.libjxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/lib/LICENSE.libjxl -------------------------------------------------------------------------------- /lib/Makefile.decode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/lib/Makefile.decode -------------------------------------------------------------------------------- /lib/Makefile.encode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/lib/Makefile.encode -------------------------------------------------------------------------------- /lib/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/lib/decode.c -------------------------------------------------------------------------------- /lib/decode.wasm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/lib/decode.wasm.gz -------------------------------------------------------------------------------- /lib/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/lib/encode.c -------------------------------------------------------------------------------- /lib/encode.wasm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/lib/encode.wasm.gz -------------------------------------------------------------------------------- /purego_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/purego_darwin.go -------------------------------------------------------------------------------- /purego_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/purego_other.go -------------------------------------------------------------------------------- /purego_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/purego_unix.go -------------------------------------------------------------------------------- /purego_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/purego_windows.go -------------------------------------------------------------------------------- /testdata/test.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/testdata/test.jxl -------------------------------------------------------------------------------- /testdata/test16.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/testdata/test16.jxl -------------------------------------------------------------------------------- /testdata/test8.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gen2brain/jpegxl/HEAD/testdata/test8.jxl --------------------------------------------------------------------------------