More about converting JFIF to JPG
JFIF (JPEG File Interchange Format) is the original 1992 specification that defined how JPEG-compressed data is wrapped in a file - the file you call a .jpg is technically a JFIF-wrapped JPEG stream. Windows 10's October 2018 update changed the default save extension in Chrome, Edge, and Outlook from .jpg to .jfif for some image saves, which is why thousands of users suddenly found their downloads in a format that other apps refused to open. The underlying bytes are identical to a JPG; only the extension differs.
Converting JFIF to JPG is essentially a rename operation - no pixel re-encoding is needed. Our converter detects this and writes out the same JPEG data with a .jpg extension, preserving every byte of compression and metadata. Photographers who Save As from Outlook attachments, social media exports, or Edge's right-click-save menu often need this conversion because Photoshop CS5 and older Lightroom Classic 6 versions whitelist by extension and reject .jfif even though they can decode the contents.
If you have hundreds of JFIFs from a corporate inbox sync, a bulk rename via PowerShell (Get-ChildItem *.jfif | Rename-Item -NewName { $_.Name -replace '.jfif$', '.jpg' }) is fastest, but our web tool also handles batches and verifies each file's JPEG SOI marker (0xFFD8) before renaming. For a single file dropped into Slack or sent over WhatsApp, the web converter is faster than opening Terminal. If the JFIF originated from a phone camera, you may want to compress-jpg the output to shrink it for sharing.
When you'd use this
Reasons to convert JFIF to JPG usually come down to compatibility, file-size, or specific feature requirements. Common situations:
- An app or platform only accepts JPG uploads.
- You need a feature unique to JPG (e.g. transparency, vector scaling, animation, multi-page pages, etc.) that JFIF doesn't provide.
- You're optimising file size — modern formats often produce smaller files than the older format you started with.
- You need a single archival format across a project so files behave consistently in the same viewer.
How to do it in jpg.now
- Open the JFIF → JPG tool on jpg.now.
- Drag your JFIF file onto the drop zone, or click Select files. You can drop a whole folder of files at once.
- The output is fixed to JPG. If the format supports extra options (page size, transparency background, quality, EXIF stripping), tweak them in the right-hand panel.
- Click Convert. The job runs on our server and finishes in a few seconds for typical photos.
- Download the result. Files stay in storage for 24 hours and are then permanently deleted.
The entire flow is free for the first 10 jobs per day with no signup required. A free account doubles that quota; a premium plan removes the limit entirely.
Tips and common pitfalls
- JFIF and JPG are the same format - rename in Finder/Explorer rather than re-encoding, to avoid any quality loss.
- If Windows keeps saving as JFIF, fix the registry: HKEY_CLASSES_ROOT > MIME > Database > Content Type > image/jpeg, set Extension to .jpg.
- Test your renamed file by opening in Preview (macOS) or Photos (Windows) - both decode the same bytes regardless of extension.
- Don't open and resave a JFIF as JPG in Photoshop - that triggers a re-encode and accumulates compression artefacts.
- For email attachments, our converter writes the cleaner .jpg extension that Outlook and Gmail clients display inline rather than as a download.