Skip to content

image guide

AVIF Conversion: How to Open AVIF Files and When to Keep Them

AVIF is the smallest mainstream image format — the AV1 video codec bent into still pictures — and it is now what your browser is quietly serving you from half the modern web. Which means you have started collecting .avif files that older software cannot open: the downloaded wallpaper, the product image, the screenshot from a site that ships AVIF. This guide is the practical side of that: converting AVIF to PNG or JPG cleanly, what you lose and keep when you do, and the cases where the right move is to leave AVIF alone.

Updated September 22, 2026 · 12 questions answered

Key takeaways

  • AVIF decodes to pixels exactly once — converting to PNG preserves everything the AVIF actually contained; converting to JPG adds one new lossy generation, so use PNG as the editing master.
  • A PNG converted from a 40 KB AVIF can land at 400 KB-2 MB: the AVIF was carrying photographic content at video-codec efficiency, and PNG's lossless DEFLATE cannot match it.
  • AVIF supports alpha and animation; lossy JPG does not, so route transparent or animated AVIFs to PNG, GIF or animated WebP as the destination needs.
  • Browser support covers current Chrome, Edge, Firefox and Safari — but older software lags, which is exactly when conversion is the right call.
  • If you control the delivery, keep AVIF: the size win is too large to give up for compatibility nobody's users need.

Why AVIF Files End Up in Your Downloads Folder

Modern sites negotiate formats: a browser that announces AVIF support gets the tiny AVIF version, and when you save an image from that page you save what was served — not the JPG the site owner originally uploaded. Add OSes that preview AVIF inconsistently and design software whose support arrived recently, and the format you never chose to collect is suddenly everywhere. (Android cameras shipping AVIF photo output adds a second pipeline for the same pile.)

The good news: AVIF is not encrypted or proprietary in any practical sense — it is a container, and every conversion tool that decodes it produces the exact pixels the AVIF was displaying. Nothing is trapped; you just need the right output choice.

Choosing the Output: PNG, JPG or WebP

PNG for anything you will open again. The AVIF → PNG conversion is a faithful one: the decoder produces pixels, the PNG encoder stores them losslessly, and you now have an editing master that survives re-saving. The bytes are dramatic — a 60 KB AVIF of a photograph may become a 1.5 MB PNG — because PNG is storing honestly what AVIF was guessing compactly.

JPG for a one-and-done share: the photo you are emailing, the form upload that refuses WebP, the print-shop submission. Quality 90 is visually identical to the AVIF for photographs; understand you have added one lossy generation, which matters only if the file will be edited and re-saved afterwards — in that case go through PNG.

WebP when the destination is a website that takes WebP but not AVIF — a browser-support matrix a few versions behind. The AVIF → WebP pass keeps you in efficient territory; the quality setting behaves the same as the other formats'.

Transparency, Animation and the Special Cases

AVIF carries alpha in both lossy and lossless modes — genuinely better than lossy WebP, which has none — so transparent AVIF logos and cutouts exist and are being served. Those convert to PNG to keep the alpha; to JPG they flatten against a matte like anything else. Check first: view the AVIF against a dark background, and if it shows through, treat it as a transparency source.

Animated AVIF is the newest of the family and the least supported downstream — old editors and viewers will not play it. Convert animated AVIF to animated WebP for web use (better support, still compact) or to GIF where paste-ability beats every other property — the animated images guide covers that format choice. The conversion decodes the frames you can see and re-encodes them honestly; per-frame AVIF quality quirks — the faint softness in fast motion — become baked into the output, because that is now what the animation contains.

Keeping AVIF Where It Belongs

If the images are for a site you control, the conversion direction reverses: ship AVIF at the top of a <picture> stack (AVIF → WebP → JPG fallback) and the same small files that frustrate your old software make your pages load fast on bad mobile connections — the size advantage over JPG runs 40-60%, which is the largest image-performance win available today without dropping quality.

The honest caveats for web use: AVIF encoding is slow (fine in a build pipeline, irritating on-the-fly), very large AVIFs decode slower on weak devices than their JPG equivalents, and a small slice of traffic — old Safari, old Android WebView, locked-down enterprise browsers — still needs the fallback row. Those are reasons to keep a fallback stack, not reasons to skip the format.

The Ten-Second Check When an AVIF Will Not Convert

If a converter rejects a file your browser displays: the file is probably truncated (re-download), mislabelled (rename with the real extension by checking what the browser shows in the network tab — or just convert it; the converter reads the header, not the name), or genuinely HEIF-in-disguise (some cameras write .avif-named HEVC stills, which are a cousin format and need a HEIF-capable decoder). Every browser-native case converts with a decoder built into the browser, which is what local AVIF tools use.

Frequently asked questions

The questions people ask most about how to convert avif to png or jpg — opening the newest image format, answered directly.

How do I convert AVIF to PNG?

Drop the file on a browser-based AVIF converter: it decodes with native browser AVIF support and hands back a PNG holding exactly the same pixels. Up to 20 files run as a batch, nothing uploads, and the PNG you get is a clean editing master.

Why is my PNG so much bigger than the AVIF?

Because AVIF is a video codec doing aggressive predictive compression, and PNG is lossless storage of the decoded result. The size difference is the formats doing different jobs — the AVIF's smallness was bought with maths; the PNG's bytes are the pixels, honestly.

Can Photoshop open AVIF?

Current versions do, via plugin in some releases and natively in later ones. For older Photoshop: convert AVIF to PNG first — lossless, so the editor receives everything the AVIF had and you lose nothing by the detour.

Is converting AVIF to JPG lossy?

One generation, yes: the AVIF decode is exact, and the JPG encode then makes its own lossy decisions. At quality 90 those decisions are invisible for photographs. For anything you will edit further, convert to PNG instead and keep the pixels lossless.

Do AVIF files have better quality than JPG?

At equal file size, yes — substantially: AVIF keeps detail that a same-weight JPG had to discard, without the blocky artefacts JPEG produces, showing softer compression instead. At equal quality, AVIF is dramatically smaller. The format's weakness is encoding speed and legacy support, not image fidelity.

Can I convert AVIF to WebP?

Yes, and it is the right move when your site wants modern-format delivery but AVIF support in your audience's browsers is thin. The conversion decodes the AVIF exactly and re-encodes to WebP — pick lossless WebP if the source had alpha you need to keep.

Does AVIF support transparency?

Yes, and unlike lossy WebP it supports alpha even in its lossy mode — which makes transparent AVIFs both common and well-built. Convert those to PNG to keep the alpha; any JPG destination flattens it.

Are there animated AVIF files?

Yes — AVIF supports animation, and it beats GIF and animated WebP on size for most content. Downstream support is the weak point: convert animated AVIF to animated WebP for web use, or GIF where chat-app paste-ability matters more than file weight.

Why is AVIF encoding so slow?

Because it runs AV1 video-compression search on a single frame — the encoder tries many partition and prediction strategies to find the tiny file. At the high-quality end, an AVIF can take tens of times longer to encode than the WebP or JPG equivalent. That is a build-time cost you automate through once, not a run-time one for visitors.

Should my website use AVIF or WebP?

AVIF first with a WebP fallback inside a <picture> element — the AVIF bytes are typically 20-40% smaller again than the WebP for the same photo, and the WebP line covers the older browsers. That pair leaves JPG as a last resort almost nobody receives anymore.

Is it safe to convert AVIF online?

Depends entirely on whether the tool uploads. A browser-based converter decodes the AVIF inside your tab using the browser's own codec — the file never leaves the device, verifiable in the Network tab — which is the property you want for any image you would not email to a stranger.

Does Windows open AVIF files?

Windows 11 gained AVIF support in recent feature updates — Photos previews it, and Edge decodes it natively. Older builds and many shell extensions still show nothing, which is the practical reason AVIF conversions keep being necessary: the download folder is more backward-compatible than the browser that filled it.