Fastest method, any device
Open a new browser tab and drag the .jfif file onto it. Every modern browser identifies the file by its bytes rather than its extension, so it renders immediately. This works on Windows, macOS, Linux and ChromeOS, needs nothing installed, and takes about two seconds.
If you would rather not leave the page, our in-browser JFIF viewer displays the image and reads out its dimensions, file size and internal header type without uploading anything.
Windows 10 and 11
Windows Photos has opened .jfif natively since 2018, but the association is sometimes missing. To restore it:
- Right-click the file and choose Open with → Choose another app.
- Select Photos.
- Tick Always use this app to open .jfif files and confirm.
Other Windows options: Paint, Paint 3D, the Windows Photo Viewer, IrfanView (small and extremely fast for bulk viewing) and XnView MP.
macOS
Double-click and Preview opens it. If macOS refuses, right-click → Open With → Preview. To make it permanent, select the file, press ⌘+I, set Open with to Preview and click Change All.
Photos, GIMP, Affinity Photo and Pixelmator all read JFIF too.
iPhone and iPad
iOS does not show .jfif in the Photos app, which is the most common complaint. Two reliable routes:
- Files app: tap the file in Files and it previews. Tap the share icon → Save Image to move it into Photos.
- Safari: if the file is in iCloud Drive or attached to an email, tapping it opens a Quick Look preview.
If Photos still will not accept it, converting to JPG on the phone works — this site runs entirely in mobile Safari and Chrome.
Android
Google Photos and most gallery apps skip .jfif files when scanning. Open the file through Files by Google instead, or long-press → Open with → Chrome. Renaming to .jpg in Files by Google makes the gallery pick it up on the next media scan.
Linux
GNOME Image Viewer (Eye of GNOME), Gwenview, feh, GIMP and ImageMagick all handle JFIF. From a terminal:
xdg-open image.jfif # default viewer
display image.jfif # ImageMagick
convert image.jfif out.jpg # ImageMagick conversion
Adobe Photoshop and Lightroom
Photoshop CC 2015 and later open .jfif directly. On older versions, use File → Open As and force the JPEG format, or rename the file to .jpg first. Lightroom Classic will not import .jfif at all — rename or convert before importing.
When nothing opens it
If no application will display the file, it is probably not a JFIF at all. Check the first bytes:
# Windows PowerShell
Format-Hex -Path .\file.jfif -Count 8
# macOS / Linux
xxd -l 8 file.jfif
A real JFIF starts FF D8 FF E0. If you see 89 50 4E 47 it is a PNG, 52 49 46 46 is a WebP or RIFF file, and 3C 21 44 4F means you downloaded an HTML error page instead of an image. Our format reference lists the full set of signatures.