What are next-gen image formats?

By Dillon Smart · · · 0 Comments

IKnowThatNow

Google Page Insights is a useful tool used to report on the performance of webpages on both mobile and desktop devices and provide suggestions on how the page can be improved. A common suggestion many websites are given is ‘Serve images in next-gen formats’, but what are next-gen image formats?

Next-gen image formats provide superior lossy and lossless compression with higher quality for smaller file sizes. Next-gen image formats are preferred for the web because the files consume less data, therefore leading to faster page speeds. In 2021, Googles search algorithm will begin taking into account page speed and user experience as stronger factors for their ranking system. Having a web page slowed down by older image formats will soon affect your websites SEO.

What is WebP?

Released in 2010 by Google and a sister project of WebM video formats, WebP offers both lossless and lossy image compression for smaller file sizes with no affect to image quality. WebP is supported by 94% of web browsers (as of May 2021) and is proving to be the most popular next-gen image format used for the web.

JPG – 28.4kB

JPG vs WebP Compression

WebP – 10.9kB

WebP vs JPG Compression

What is JPEG 2000?

Developed between 1997 and 200 by a Joint Photographic Experts Group committee to improve upon JPEG, JPEG 2000 provides a modest increase of compression over JPEG with a flexible codestream. JPEG 2000’s efficient code-stream organization allows for progressive pixel accuracy and image resolution allowing a lower quality image to be display first before a higher quality image has been downloaded.

What is JPEG XR?

JPEG XR offers higher compression over JPEG with equivalent quality. JPEG XR also offers tile regions, resulting in parts of the image being decoded separately enabling rapid access to parts of the image without needing to decode the entire file.

 

0 Comment

Was this helpful? Leave a comment!

This site uses Akismet to reduce spam. Learn how your comment data is processed.

How to generate an SSH key and add to authorized_keys

Updated 16th August 2022

In this article we explain how to generate a SSH key for your local machine and add your public key to the authorized_keys on a remote server. Generate an SSH key for Windows, MAC and Linux Note: If you are using Windows, we recommend you use a SSH client like PuTTY. For MAC/Linux run: ssh-keygen

Pixel Tracking in PHP

Updated 16th August 2022

When creating email campaigns, it’s important to know how many recipients actually opened your email. This information can help you determine if your efforts are working or if it’s time to change your strategy. Most mail champaign tools such as Mailchimp and SendInBlue use a technique called Pixel Tracking. In this post, you will learn

How to create Alias command in Linux

Updated 16th August 2022

Alias commands in Linux are a great way to speed up your workflow. In this post, I will show you how to create Alias command in Linux using Bash on WSL (Windows Subsystem for Linux). What is an Alias command? The alias command in Linux allows you to create custom shortcuts for frequently used commands.