Formats5 min read·Updated

WebP Browser Support in 2026: Full Compatibility Table

The question 'does everything support WebP yet?' has had the same answer since 2020: yes, for all practical purposes. Here is the full compatibility picture, including the edge cases that still trip people up.

Browser compatibility table

BrowserWebP sinceNotes
Chrome (desktop & Android)v9, 2010Full support incl. animation
Edgev18, 2018Full support
Firefoxv65, 2019Full support
Safari macOS14 (Big Sur), 2020Full support
Safari iOS / iPadOS14, 2020Full support
Operav11.10, 2011Full support
Samsung Internetv4, 2016Full support
Internet ExplorerNeverUse JPEG fallback

According to Can I use(opens in new tab), WebP is available to more than 97% of global users. The remaining share is mostly Internet Explorer and long-unsupported Safari versions on old devices.

Beyond browsers

PlatformWebP support
WordPressUpload since 5.8 (2021)
Shopify, Squarespace, Wix, WebflowYes (often auto-converted)
Windows 10/11 PhotosYes
macOS Preview / PhotosYes (Big Sur+)
Photoshop23.2+ (2022) natively
GIMP, Affinity, Figma, SketchYes
Gmail, Apple MailYes
Outlook desktop (Windows)Partial; use JPEG for email
Facebook, X, LinkedIn, Instagram uploadsAccepted (re-encoded server-side)

Adding a fallback

If you must support IE or legacy email clients, use the <picture> element: <picture><source srcset="photo.webp" type="image/webp"><img src="photo.jpg" alt="..." width="1200" height="800"></picture>. Browsers choose the first source they can decode. Content negotiation via the Accept header at the CDN level achieves the same thing without touching HTML.

Detecting WebP support in JavaScript

Rarely needed today, but simple: create a canvas and check canvas.toDataURL('image/webp').startsWith('data:image/webp'). This is also how this site verifies your browser can encode WebP before converting.

Put it into practice

Convert your images to WebP right now, free and privately in your browser.

Open the converter

Frequently asked questions

Yes, since Safari 14 on macOS Big Sur and iOS 14 (September 2020). All current Apple devices display WebP.

Gmail, Apple Mail and most mobile clients render WebP; Outlook for Windows historically does not. Use JPEG/PNG for email campaigns to be safe.

Keep reading

Formats7 min read

What is WebP?

Everything you need to know about the WebP image format: how it works, how much smaller it is than JPEG and PNG, browser support, pros and cons, and how to convert your images.

Read more
Formats8 min read

Image formats compared

A practical comparison of the four main web image formats: compression, quality, transparency, animation, browser support and the right choice for each use case.

Read more
SEO9 min read

Image SEO best practices

12 actionable image SEO tips: file formats, names, alt text, dimensions, lazy loading, sitemaps and structured data. Get more traffic from Google Images and faster pages.

Read more