Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

.Webp extension - image format support

A topic by Anto80 created May 14, 2021 Views: 328
Viewing posts 1 to 2
(2 edits)

Hello,

Is it possible to handle ".webp" animated images in project page (like it's already handled for GIFs ?)

I tried this HTML code but "picture" tag seems to be rewritten.

<picture>   
 <source srcset="https://www.gstatic.com/webp/gallery/4.webp" type="image/webp">   
 <source srcset="https://img.itch.zone/aW1nLzU5MTkwNzcuZ2lm/original/d51xeE.gif" type="image/gif">    
 <img src="https://img.itch.zone/aW1nLzU5MTkwNzcuZ2lm/original/d51xeE.gif" alt="Alt Text"> 
</picture>

(Why am I using webp format? This format is smaller and thus pages could be loaded more quickly. Especially for GIF files which can be large and lossy. Optimizing loading time could help SEO.)

Thanks !

Admin moved this topic to Ideas & Feedback