It seems like either

  • I get a .webp file when I don’t want it (downloading images)

  • I try to use a .webp format, but it isn’t allowed (uploading images)

So who is trying to encourage people to use it, and who is trying to prevent adoption?

I’m constantly converting it with imagemagick and other tools

  • IphtashuFitz@lemmy.world
    link
    fedilink
    English
    arrow-up
    10
    ·
    3 months ago

    I know that some CDNs like Akamai will serve it up in cases where it optimizes delivery of the image. They have an add-on service for their customers called Image and Video Manager. Among other things it can compress images to improve performance.

    Imagine a website that displays a JPG file that has thousands of colors and a resolution of 10,000x10,000 pixels. That’s terrible for loading across the internet because the human eye can’t distinguish that many colors and most devices have screens smaller than 10k. The website in question could also be putting that image in a frame that’s only 1k in size.

    So what Akamai’s service does when it sees this image is that after serving it up the first time it optimizes it to a number of different sizes and formats. It will make multiple copies in different resolutions & file formats, and reduce the number of colors without impacting the visual appearance of the image. The optimizations target popular devices & browsers, so you could end up with a bunch of different sized jpegs, webps, pngs, etc.

    Once all those versions have been created they are automatically added to Akamais CDN cache. The next time a person visits that website Akamai will look at the characteristics of the device being used and serve the best optimized version of the image that the device supports. So if you’re running Chrome on a mobile device you might get a 800x800 webp version of the image rather than the original 10,000x10,000 version, for example.

    • spookex@lemmy.world
      link
      fedilink
      arrow-up
      7
      arrow-down
      3
      ·
      3 months ago

      That last bit drives me up the wall sometimes, if I find an image that I like, I want to see it in the highest resolution possible, even if it will cause my device to catch fire

      • purplemonkeymad@programming.dev
        link
        fedilink
        arrow-up
        7
        ·
        3 months ago

        In that last case, it is usually performed by rewriting the uri of the image. Those images will typically have query strings after the filename that get the optimized versions. If you remove the query strings parts you normally get the original image.

        • IphtashuFitz@lemmy.world
          link
          fedilink
          English
          arrow-up
          4
          ·
          3 months ago

          That’s not always the case. With Akamai I can very easily enable this tool on all images on my employers website and there will be no easy way for a user to bypass it.

          I just took a look at www.frankandoak.com which Akamai says is a user of this tool (and not my employer). They’re a clothing retailer and have a lot of images on their site. Using the developer tools in Chrome I can see that a lot of their images of products are being served as webp even though the file extensions are jpg. It looks like they add version numbers as parameters on image urls, and removing those effectively does nothing. I’m still served webp versions of those images.