How to show google drive image in webp format

Hi,

Today I solved this specific problem statement.

How can I serve google drive image file in WEBP format?

Here's the sample code snippet you can refer:

<h1>Example of Embedding a Google Drive Image</h1>
<p>Original URL: https://drive.google.com/file/d/0B6wwyazyzml-OGQ3VUo0Z2thdmc/view</p>

<picture>
  <source srcset='https://drive.google.com/uc?export=view&id=0B6wwyazyzml-OGQ3VUo0Z2thdmc' type='image/webp'>
  <source type="https://drive.google.com/uc?export=view&id=0B6wwyazyzml-OGQ3VUo0Z2thdmc" type="image.jpg">
  <img srcset='https://drive.google.com/uc?export=view&id=0B6wwyazyzml-OGQ3VUo0Z2thdmc' alt='dice'>
</picture>

<p><a href="https://unsplash.com/pborowska">Photo by Paula Borowska</a></p>

Comments