OmegaPix

Compress & Convert

Image Compressor General compression for any image format JPG Compressor Shrink JPGs while keeping detail PNG to WebP Smaller PNGs with full transparency PNG to JPG New Shrink PNG photos massively (no alpha) JPG to PNG New Lossless re-save, ready for editing HEIC to JPG Open iPhone photos anywhere AVIF Converter Best modern format for the smallest files

Resize & Crop

Social Media Resizer All platforms in one place Instagram Resizer Feed, Story, Reel & more YouTube Thumbnail 1280ร—720 optimised thumbnails LinkedIn Banner Profile & company cover images OG Image Resizer 1200ร—630 for social sharing Facebook Resizer Feed, Cover & Story sizes Twitter / X Resizer Post, Header & card sizes Image Cropper New Crop images with aspect-ratio presets

Privacy & Utilities

EXIF / Metadata Remover Strip GPS, camera info, EXIF, pixel-perfect Image Metadata Viewer New See EXIF, GPS & if a photo was made with AI AI Image Checker New Check if an image was made with AI PDF Metadata Remover New Strip author, title, dates, XMP from PDFs Image Watermarker New Stamp a text watermark before sharing Image Redactor New Black-bar, blur, or brush over sensitive parts Background Remover New AI cutout โ†’ transparent PNG, in your browser Favicon Generator New One image โ†’ every favicon size + .ico + manifest

PDF Tools

Merge PDFs New Combine multiple PDFs into one Split PDF New Extract pages by range Rotate PDF New Fix sideways or upside-down scans Delete PDF Pages New Remove pages from a PDF PDF Metadata Viewer New See author, software and hidden data in any PDF Images to PDF New JPG, PNG, HEIC, WebP, AVIF โ†’ PDF PDF to Images New PDF pages โ†’ PNG or JPG Compress PDF New Shrink scans + photo PDFs
Blog Install app Privacy Terms
Back to blog
Developer Guides

AVIF Browser Support: Complete Guide for 2026

AVIF works in every modern browser. Here is the per-browser version data, the fallback strategy, and whether you can drop the JPEG fallback yet.

AVIF Browser Support: Complete Guide for 2026

"Does AVIF work in Safari?" is a question people still ask in 2026. The answer has been yes since 2023. Here's the complete browser-support landscape and what fallback strategy makes sense.

The summary table

Browser AVIF support Since
Chrome (desktop) โœ… 85 (Aug 2020)
Chrome (Android) โœ… 85 (Aug 2020)
Edge โœ… 121 (Jan 2024)
Firefox (desktop) โœ… 93 (Oct 2021)
Firefox (Android) โœ… 113 (May 2023)
Safari (macOS) โœ… 16.4 (Mar 2023)
Safari (iOS) โœ… 16.4 (Mar 2023)
Samsung Internet โœ… 14 (Dec 2020)
Opera โœ… 71 (Sep 2020)

In 2026, AVIF is supported by every browser version still receiving security updates.

Caniuse global percentage (2026)

Combined global support across all browsers: 97.8%. The 2.2% missing is:

  • Internet Explorer (deprecated since 2022)
  • Some industrial-control browsers
  • Older feature phones

For practical purposes, you can ship AVIF without a fallback to 98% of your audience.

Should you drop the JPEG fallback?

It depends on your audience.

Drop it if:

  • Your audience is mostly Western consumer market (97-99% AVIF support).
  • You're shipping a SaaS or content site, not legacy enterprise.
  • You have analytics showing < 2% of traffic on browsers without AVIF.

Keep it if:

  • You serve government, healthcare, or enterprise. These audiences run older browsers.
  • You support APAC markets with high feature-phone penetration.
  • The fallback is cheap (you already have JPGs in your image library).

The fallback cost is mostly storage. Encoding once, storing two formats, serving via <picture> with <source>, minimal overhead.

A realistic 2026 fallback strategy

<picture>
  <source srcset="image.avif" type="image/avif">
  <source srcset="image.webp" type="image/webp">
  <img src="image.jpg" alt="..." width="1600" height="900">
</picture>

This serves:

  • AVIF to 97.8% of browsers
  • WebP to the next 1.5% (mostly slightly-older Firefox / Safari)
  • JPEG to the remaining 0.7%

Three formats per image is more storage but covers every case. See How to Use the HTML Picture Element.

What about email?

Email is the legacy world. Stick with JPG in email. Most email clients don't render AVIF. Some don't render WebP. This isn't going to change soon.

What about Microsoft Office?

PowerPoint and Word handle AVIF in 2024+ versions but it's flaky. If you're embedding images in slides or docs that will be opened on older Office installs, use JPG.

What about PDFs?

PDF readers in 2026 mostly handle AVIF, but the spec doesn't require it. Embed PDFs with JPG images for maximum compatibility. OmegaPix's Images to PDF automatically converts AVIF input to JPG for embedding for this reason.

How AVIF support is measured

Several sources track browser support:

  1. caniuse.com: probably the most cited. Combines self-reported support and user-agent data.
  2. MDN compatibility tables: spec-level support, updated by Mozilla.
  3. Google's CrUX: real Chrome user data.
  4. Your own analytics: most honest for YOUR audience.

For decisions affecting your specific audience, check your own analytics.

Detection in JavaScript

If you need to feature-detect AVIF support in JS:

async function supportsAvif() {
  const img = new Image();
  img.src = 'data:image/avif;base64,...'; // minimal AVIF test image
  return new Promise(resolve => {
    img.onload = () => resolve(true);
    img.onerror = () => resolve(false);
  });
}

You typically don't need this: <picture> element negotiation handles fallback at the browser level.

Conclusion

AVIF is safe for production in 2026. The "Safari doesn't support it" complaint is three years out of date. Ship AVIF as your primary format, WebP as a defensive fallback, JPG only if you're targeting legacy environments.

Related

Try AVIF Converter, free in your browser

No uploads, no account. Your images never leave your device.

Open AVIF Converter

Comments

Optimize images privately in your browser.

Compress and convert JPG, PNG, WebP, AVIF, HEIC: all client-side. Files never leave your device.

Start Compressing