Efficiently encode images

The Opportunities section of your Lighthouse report lists all unoptimized images, with potential savings in kibibytes (KiB). Optimize these images so that the page loads faster and consumes less data:

A screenshot of the Lighthouse Efficiently encode images audit

How Lighthouse flags images as optimizable

Lighthouse collects all the JPEG or BMP images on the page, sets each image's compression level to 85, and then compares the original version with the compressed version. If the potential savings are 4KiB or greater, Lighthouse flags the image as optimizable.

How to optimize images

There are many steps you can take to optimize your images, including:

Optimize images using GUI tools

Another approach is to run your images through an optimizer that you install onto your computer and run as a GUI. For example, with ImageOptim you drag and drop images into its UI, and then it automatically compresses the images without noticeably compromising quality. If you're running a small site and can handle manually optimizing all images, this option is probably good enough.

Squoosh is another option. Squoosh is maintained by the Google Web DevRel team.

Stack-specific guidance

Drupal

Consider using a module that automatically optimizes and reduces the size of images uploaded through the site while retaining quality. Also, ensure you are using the Drupal's built-in Responsive Image Styles (available in Drupal 8 and above) for all images rendered on the site.

Joomla

Consider using an image optimization plugin that compresses your images while retaining quality.

Magento

Consider using a third-party Magento extension that optimizes images.

WordPress

Consider using an image optimization WordPress plugin that compresses your images while retaining quality.

Resources