Read & write WEBP images in Delphi, Free Pascal and Lazarus Requires .DLL files (included). For Linux and MacOS you need to download binaries from libflif project.
Image1.Picture.LoadFromFile('test.webp');
var w: TWebpImage;
begin
w := TWebpImage.Create;
w.Assign(Bitmap...);
w.SaveToFile('test.webp');
w.free;
end;
Should work under other 64 bit Delphis. Needs tests under 32 bit Lazarus and 32 bit Delphi.
- apt install apt-file libwebp-dev
- apt-file search libwebp.so It will list you how your libwebp.so files are named exactly and where they are
- Open WebpImage.pas and edit "const LIBWEBPF"
- Change the value of that const. Enter filename (excluding path) found in step 2
- Compile and run