├── .gitignore ├── BUILDING.md ├── README.md ├── bin ├── x64 │ ├── libwebp.dll │ └── test.png └── x86 │ └── libwebp.dll ├── examples ├── display_vcl │ ├── u_vcl_example.dfm │ ├── u_vcl_example.pas │ ├── vcl_example.dpr │ └── vcl_example.dproj └── encode_and_decode │ ├── example.dpr │ └── example.dproj └── src ├── Vcl.WebpImage.pas ├── WebpHelpers.pas └── libwebp.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/BUILDING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/README.md -------------------------------------------------------------------------------- /bin/x64/libwebp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/bin/x64/libwebp.dll -------------------------------------------------------------------------------- /bin/x64/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/bin/x64/test.png -------------------------------------------------------------------------------- /bin/x86/libwebp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/bin/x86/libwebp.dll -------------------------------------------------------------------------------- /examples/display_vcl/u_vcl_example.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/examples/display_vcl/u_vcl_example.dfm -------------------------------------------------------------------------------- /examples/display_vcl/u_vcl_example.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/examples/display_vcl/u_vcl_example.pas -------------------------------------------------------------------------------- /examples/display_vcl/vcl_example.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/examples/display_vcl/vcl_example.dpr -------------------------------------------------------------------------------- /examples/display_vcl/vcl_example.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/examples/display_vcl/vcl_example.dproj -------------------------------------------------------------------------------- /examples/encode_and_decode/example.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/examples/encode_and_decode/example.dpr -------------------------------------------------------------------------------- /examples/encode_and_decode/example.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/examples/encode_and_decode/example.dproj -------------------------------------------------------------------------------- /src/Vcl.WebpImage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/src/Vcl.WebpImage.pas -------------------------------------------------------------------------------- /src/WebpHelpers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/src/WebpHelpers.pas -------------------------------------------------------------------------------- /src/libwebp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wykerd/delphi-webp/HEAD/src/libwebp.pas --------------------------------------------------------------------------------