In short
AVIF (AV1 Image File Format) stores AV1-coded pixels in an ISO base-media box container. Because AV1 decodes nativelyin current browsers, this converter is a clean, truthful operation: your browser decodes the image, draws it to a canvas, and re-encodes it as alossless PNG that keeps the alpha channel. You get a real .png — pixel-exact to what the AVIF decoded to, with transparency preserved. Nothing is uploaded, and you can confirm that in the Network tab.
Why convert AVIF to PNG?
Two reasons dominate. Transparency: if your AVIF has transparent regions — a logo, an icon, a cut-out product shot — PNG is the format that keeps them; JPG would flatten them onto white.Losslessness: PNG never discards detail, so it's the safe choice when the image will be edited further or composited, and you don't want to stack more compression on top. PNG is also supported everywhere, which matters when the software downstream doesn't yet understand AVIF. The cost of all this is file size — read on.
The honest fidelity caveats
PNG's losslessness is real but often misunderstood. The PNG is a pixel-perfect copy of what the AVIF decoded to — not of the original scene. AVIF is a lossy format, so whatever detail its compression already discarded is gone before PNG ever gets involved; PNG cannot bring it back. So converting AVIF → PNG does not "upgrade" the image; it freezes the current pixels with no further loss.
Two more specifics. File size: because PNG doesn't throw anything away, a PNG of a photograph is frequently several times larger than the source AVIF — expect big files for detailed photos.Bit depth: the browser canvas is 8-bit sRGB, so 10/12-bit HDR or wide-gamut AVIFs are reduced to 8-bit sRGB in the PNG. What's kept exactly: the pixel dimensions and the alpha channel.
Why "no upload" is verifiable, not a slogan
The AVIF is read with the browser's file APIs and decoded by the same native AV1 support browsers use to display AVIF on the web; the PNG is encoded from a <canvas> right in the page. No request carries your image. Prove it yourself: open DevTools, select the Network tab, drop a file, and watch nothing leave — the same principle behind ourzero-upload proof page. The free photo ceiling is 50 MB; over that the tool says so and points topricing, still without uploading anything.
If the file is damaged, repair it first
This converter can only work on an image the browser can decode. If your AVIF was truncated mid-download, carries a garbage prefix from a recovery tool, or has a broken box structure, the AV1 decoder will refuse it — and no honest converter can produce a PNG from pixels that never decoded. The tool runs a local structural scan and, when it finds damage, links you to repair AVIF to rebuild the container. Repair first, then convert the repaired copy here.