JPG to JPEG (or JPEG to JPG)

JPG and JPEG are the same format. Some platforms accept only one extension or the other — this tool renames the file without touching the image data.

When does this come up?

How it works

There's no conversion happening. JPG and JPEG are the same format — the bytes inside a .jpg file and a .jpeg file are byte-for-byte identical for the same image. Both extensions exist for one reason: early Windows (MS-DOS / Win 3.x / Win 95) limited filename extensions to three letters, so 'jpeg' got shortened to 'jpg'. Modern operating systems support both, but some forms, apps, and pipelines have hardcoded one or the other. This tool just renames the file so you have the extension you need — no re-encoding, no quality loss, no actual conversion.

Frequently asked questions

Are JPG and JPEG actually the same file format?

Yes — exactly the same. JPEG (Joint Photographic Experts Group) is the format; JPG is just the three-letter version of the .jpeg extension that early Windows required. The MIME type is image/jpeg for both. Renaming a .jpg to .jpeg (or vice versa) doesn't change anything inside the file.

Then why do both extensions exist?

MS-DOS and the Windows 95 / 3.x era limited filename extensions to three letters. Since 'jpeg' is four, .jpg became the de facto standard on Windows. macOS and Unix happily used .jpeg. By the time Windows lifted the restriction, both extensions were already entrenched, so today they coexist. Roughly: .jpg is more common on Windows, .jpeg slightly more common on macOS, and the modern web doesn't care.

Will I lose quality if I 'convert' jpg to jpeg here?

No — because there's no conversion. This tool just changes the filename extension. The file bytes are unchanged, so quality is identical. (Compare this to a PNG → JPG conversion, which actually re-encodes the image and does introduce quality loss.)

Why does my upload form reject one extension but not the other?

Some forms validate uploads by extension string instead of MIME type — a lazy implementation that's still common. If the form's regex looks for 'jpg' specifically, a .jpeg file fails even though it's the same format. Renaming the file is the fix. Report it to the platform if you can; it's usually a one-line bug.

Can I rename without this tool?

Yes — on any OS, just change the filename extension manually. macOS Finder, Windows Explorer, and Linux file managers all let you rename .jpg to .jpeg directly. This tool exists for users who'd rather drop the file in a browser than navigate file properties, and to settle the 'is JPG the same as JPEG?' question with a clear answer.

What about JFIF, EXIF, or other JPEG variants?

JFIF and EXIF are containers / metadata layers around the JPEG image data — both .jpg and .jpeg files commonly use them, and renaming the extension doesn't affect any of that. If a tool specifically demands 'JPEG with EXIF stripped', that needs a different operation; for plain extension renaming, this is enough.

About this tool

The JPG vs JPEG question is the most common image-format confusion on the web — and the answer is anticlimactic: they're the same. Joint Photographic Experts Group, the standards committee that designed the format in 1992, never specified an extension; OS conventions did. Windows 3.x's three-letter limit gave us .jpg; everyone else used .jpeg; both stuck around. The MIME type for both is image/jpeg. The bytes are identical. There is no conversion to do — only renaming. If a form, app, or pipeline insists on one extension, this tool gets you the right filename in one click.