Why convert AVIF to JPG?
AVIF has good but not universal support - older software, many CMS platforms, and most print services still expect .JPG. JPG is accepted by virtually every app, camera system, and online service. The trade-off is file size: at similar visual quality a JPG is typically 2-3× larger than the AVIF.
How to convert AVIF to JPG
Preview (macOS) BUILT-IN
Open the .avif in Preview (macOS Ventura or later), choose File > Export, pick JPEG from the format list, and save.
GIMP OPEN-SOURCE
Open the .avif in GIMP, then use File > Export As, change the extension to .jpg, and set quality in the dialog.
XnView MP FREE
Open the .avif in XnView MP and use File > Export (or Shift+E) to save as JPEG; batch mode is available under Tools > Batch Convert.
Command line - ImageMagick CLI
Run magick in.avif out.jpg to convert; add -quality 85 to control JPEG compression.
About these formats
An AVIF file is a still image encoded with the AV1 video codec, developed by the Alliance for Open Media in 2019. Modern browsers (Chrome, Firefox, Edge, Safari 16+) open it by…
Open .AVIF details →A JPG (also .jpeg) is a compressed photo or image in the JPEG format, standardized in 1992. Every operating system opens it natively - double-click and Windows Photos, macOS Preview, or…
Open .JPG details →Quality & what to watch
- Both AVIF and JPG use lossy compression - converting stacks two rounds of artifacts; keep the original
.avifif you may need to re-export. - AVIF supports transparency; JPG does not - transparent pixels become solid (usually white) in the
.jpg, so use.pnginstead if transparency matters. - The
.jpgis often 2-3× larger than the source.avifat similar visual quality - that is normal, not a tool error.
Frequently asked questions
Will I lose quality converting AVIF to JPG?
.avif if you may need to re-export later.Why is the JPG bigger than the AVIF?
.jpg at comparable visual quality is typically 2-3× larger - this is expected and not a tool error.What happens to AVIF transparency in the JPG?
.png instead if you need to preserve transparency.Can I batch-convert multiple AVIF files to JPG?
.avif files, and ImageMagick's mogrify -format jpg *.avif processes all files in a directory.