[Tex/LaTex] use webp images in Latex

graphics

I have an .webp image that I want to use in my Latex document. However, I can't really find how to use it or is it simply not possible with Latex?

Best Answer

You probably need to convert the image to png. A freely available convertor precompiled for windows/linux/mac is available from

https://developers.google.com/speed/webp/download

then

dwebp image.webp -o image.png

should produce a usable file.

Related Question