jpegjpg
every platform // rename or re-save

How to Change JPEG to JPG

Four ways to turn a .jpeg into a .jpg — pick the one that matches your device.

~/change-jpeg-to-jpg

First: rename or re-save?

Because the formats are identical, a simple rename is usually all you need. Reach for a true re-save only when an app is choking on metadata or you want a guaranteed-clean standard JPEG. Both are below.

Rule — rename first; re-save only if something downstream still complains.

Windows

Turn on file extensions, then rename:

  1. Open File Explorer → View → tick File name extensions.
  2. Right-click the file → Rename.
  3. Change the ending from .jpeg to .jpg and press Enter.

Prefer a re-save? Open it in PaintFile → Save As → JPEG picture.

Mac

  1. Click the filename once to select it, then again to edit it.
  2. Replace .jpeg with .jpg and confirm "Use .jpg".

For a re-save: open in PreviewFile → Export → Format: JPEG.

Phone (iOS & Android)

Mobile file managers can rename too, but the easiest route is a browser-based converter: open it, upload the .jpeg, download the .jpg. No app install required.

Command line (bulk)

Got a whole folder to change at once? One line does it:

bash — rename every .jpeg in the current folder
# macOS / Linux
for f in *.jpeg; do mv -- "$f" "${f%.jpeg}.jpg"; done
PowerShell — Windows
Get-ChildItem *.jpeg | Rename-Item -NewName { $_.Name -replace '\.jpeg$','.jpg' }

Doing it in bulk online

If the command line isn't your thing, most online converters accept many files in one go — drop the whole set in, and every file comes back with a .jpg extension. That is the friendliest option for non-technical users with dozens of photos.

Still unsure whether you even need to convert? Read JPEG vs JPG, or return to the overview.

FAQ

Can I just rename the file from .jpeg to .jpg?

In most cases yes — the formats are identical, so renaming works. The exception is when a program reads metadata it expects from a fresh export; then re-saving as .jpg is the cleaner option.

How do I change many JPEG files to JPG at once?

Use a batch rename tool, a one-line terminal command, or an online converter that accepts multiple files. All three change the extension on the whole set in one pass.