AVIF to PNG

RUNS ON THIS DEVICE

PNG output keeps every pixel and every bit of transparency from your AVIF source. The conversion runs locally in your browser, so nothing is sent anywhere.

When to choose PNG over JPG

PNG is the safer target whenever your image is anything other than a photograph. Screenshots, logos, diagrams, UI mockups, and text-heavy graphics all suffer visibly from JPG compression — edges smear and flat colors pick up noise. PNG stores every pixel exactly as decoded, so the output matches the AVIF source with no new artifacts. Just as importantly, PNG supports an alpha channel. If your AVIF has transparent regions — a logo with a cutout background, for instance — those regions survive the conversion intact instead of being flattened.

How the conversion runs

AVIF decoding is built into every current browser, so this tool doesn't need to download a codec before it can start. Your file is handed to a Web Worker, which decodes the AVIF off the main thread and writes the pixels out as a PNG using the browser's standard canvas encoder. One honest trade-off worth knowing: PNGs are usually much larger than the AVIF you started with, because AVIF's compression is far more aggressive. The size comparison shown after each conversion makes the difference plain, so you can decide whether the compatibility and lossless quality are worth it.

Private by design, built for batches

Everything described above happens on your computer, inside this page. No image data crosses the network at any point — a design fact, not a policy promise, since there is no server that could receive your files in the first place. Queue up a whole folder if you need to: three files convert simultaneously, and finished PNGs can be saved individually or bundled into a single ZIP. There are no sign-ups, no watermarks, and no cap on how many files you convert.

Frequently asked questions

Is the conversion really lossless?

Yes, in the sense that matters: every pixel the browser decodes from your AVIF is written to the PNG unchanged. If the AVIF itself was saved with lossy compression, the PNG preserves the decoded result — it can't restore data the AVIF had already discarded.

Do my files get uploaded anywhere during conversion?

No — this page has no server-side processing at all. The AVIF is decoded and the PNG encoded by your own browser, so your images never leave your computer.

Will transparency be preserved?

Yes. PNG has full alpha-channel support, so transparent and semi-transparent areas in your AVIF carry over exactly.

Why is my PNG so much bigger than the AVIF?

AVIF is a modern format with very efficient compression, while PNG is lossless and comparatively bulky. A larger output file is normal and doesn't indicate a problem.