In short
AVIF (AV1 Image File Format) wraps AV1-coded picture data in the same ISO base-media box container that MP4 and HEIC use. The important difference from HEIC is that AV1 decodes natively in current browsers — so this converter is a clean, truthful operation: your browser decodes the image, draws it to a canvas, and re-encodes it as JPEG at quality 0.92. You get a real .jpg you can open anywhere. Nothing is uploaded, and you can prove it in the Network tab.
Why convert AVIF to JPG at all?
AVIF is excellent — it typically produces smaller files than JPEG at the same visual quality, and it supports transparency, wide color gamut and HDR. The catch is compatibility. Plenty of software still can't open an AVIF: older phones, desktop apps that predate the format, email clients, some CMS uploaders, and older operating systems. JPEG, by contrast, opens literally everywhere. Converting to JPG trades AVIF's efficiency for universal reach — the right call when you need to email a photo, upload it to a site that rejects AVIF, or hand it to someone on older software.
The honest fidelity caveats
We would rather tell you the trade-offs than pretend there are none. First, double compression: AVIF is already lossy, so re-encoding its decoded pixels to JPEG adds a second lossy pass — generation loss. Quality 0.92 keeps that small and usually invisible, but the JPG is not identical to the source. Second,transparency is lost: JPEG has no alpha channel, so any transparent areas are flattened onto white; if you need transparency, use PNG. Third, bit depth and gamut: the browser canvas is 8-bit sRGB, so a 10/12-bit HDR or wide-gamut AVIF is tone-mapped down to 8-bit sRGB — and JPEG couldn't store the extra range anyway. What you do keep exactly is the pixel dimensions — no resizing, no cropping.
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 that lets Chrome, Firefox, Edge and Safari show AVIF on the open web. The re-encode to JPEG happens on a<canvas> in the page. No request carries your image — don't take our word for it: open DevTools, select the Network tab, drop a file, and watch nothing leave. It's the same principle as ourzero-upload proof page, applied to conversion. The free size ceiling for photos is 50 MB; over that, the tool says so and points to pricing — still without uploading anything.
If the file is damaged, repair it first
A conversion tool can only convert an image the browser can decode. If your AVIF was truncated by an interrupted 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 JPG from pixels that never decoded. When that happens, the tool runs a local structural scan and, if it finds damage, links you straight torepair AVIF to rebuild the container first. Repair the file, then come back and convert the repaired copy here.