Glossary · Web Development

WebP

pronounced as a word: WEB-peenoun

WebP is a modern image format from Google that shrinks file sizes while keeping quality high.

Part of speech
noun
Pronunciation
pronounced as a word: WEB-pee
Origin
From 'web' plus the letter P for the picture format. WebP was developed by Google and released in 2010 as a modern image format.

What is WebP?

WebP is a modern image file format designed to make pictures on the web significantly smaller in file size while keeping visual quality high. It serves the same role as older formats like JPEG, PNG, and GIF, but achieves noticeably better compression, meaning a WebP image can look just as sharp as a JPEG while weighing considerably less. That smaller footprint is the entire point: images are usually the heaviest part of a web page, so shrinking them is one of the most direct ways to make a site load faster.

The format works by using more advanced compression math than the formats it replaces. It offers both lossy compression, which discards some image data to reach very small sizes much like JPEG does, and lossless compression, which preserves every pixel exactly like PNG. Crucially, WebP supports transparency in both modes, something JPEG cannot do, and it can hold animation, filling the role of an animated GIF at a fraction of the size. This versatility lets a single format cover photographs, logos with transparent backgrounds, and short looping animations, so a site can standardize on one efficient option instead of juggling several.

WebP was developed by Google and released in 2010. Its name combines web, its intended home, with the letter P for the picture format. Google built it partly on video compression technology, applying the frame compression ideas from web video to still images, which is a large part of why it compresses so effectively. Over the years that followed, browser support broadened until the format became widely usable across the major browsers, moving it from an experiment into a mainstream choice.

For a business, adopting WebP is a practical performance and cost decision. Lighter images mean faster page loads, which improves the Core Web Vitals that measure loading experience and which search engines factor into rankings. Faster pages hold visitors longer, reduce bounce rates, and can lift conversions, especially on mobile connections where every kilobyte matters. Smaller files also cut bandwidth and hosting or content delivery costs for image heavy sites such as online stores, real estate listings, and photography portfolios. Because the quality is preserved, these gains come with no visible tradeoff to the visitor.

The main nuance is fallback support. While WebP is broadly supported today, some older browsers or specific environments may not render it, so a careful setup serves WebP to browsers that accept it and falls back to a JPEG or PNG for those that do not. This is commonly handled with the HTML picture element or through server side content negotiation, and many content management systems and image services now do it automatically. A related consideration is that newer formats such as AVIF push compression even further, so WebP is best seen as one strong option in an evolving landscape rather than a permanent endpoint. WebP also complements other speed techniques: pairing it with lazy loading, which defers off screen images, and minification of code produces a page that is light in every dimension. For most sites, converting existing images to WebP is a low effort change with an immediate, measurable speed benefit.

Why it matters

Images are often the largest drag on load time, so WebP directly improves speed, Core Web Vitals, and conversions.