Skip to content
Initurn

Convert JPG to PNG

Files never leave your device. All processing happens in your browser.

Pixels. Leave empty to keep the original dimensions.

How to convert JPG to PNG

  1. 1

    Drop your JPG files onto the box above, or tap it to browse your device.

  2. 2

    Conversion starts immediately and runs on your own machine.

  3. 3

    Check the output size, then download your PNG files.

Going from JPG to PNG is one of the few conversions people expect to improve an image, and it does not. It is worth being clear about that up front, because the disappointment is avoidable: PNG is a better format than JPEG in almost every technical sense, but converting an existing JPG cannot undo what JPEG already did to it.

Why the quality does not improve

JPEG throws away image data at the moment the file is saved. It splits the picture into 8×8 pixel blocks, discards fine detail inside each block, and usually stores colour at half resolution. That is why JPEG files are small, and why sharp edges — text, logos, screenshots — pick up the faint halos and blocky smudges people call artifacts.

PNG is lossless: it stores exactly the pixels it is given. So a PNG made from a JPG is a perfect, permanent copy of an already-damaged image. The artifacts are now baked in as real pixel values rather than compression side effects, and no later step can remove them. What you gain is that nothing gets worse from here on.

When this conversion is the right move

  • You are about to edit the image repeatedly. Every JPEG save re-compresses and degrades a little more; PNG stops that generation loss dead.
  • Something downstream demands PNG — a print shop, an app icon pipeline, a document template, a game engine asset folder.
  • You need to add transparency. JPEG cannot store an alpha channel at all, so you must convert to PNG first, then cut out the background in an editor.
  • You are layering text or graphics over the image and want the new elements to stay crisp.

Expect the file to get much bigger

A 2 MB photo commonly lands somewhere between 8 MB and 20 MB as a PNG. This is normal and not a fault in the conversion. PNG compresses by finding repeated patterns, and photographs — especially photographs full of JPEG noise — have very few. Flat graphics with large single-colour areas behave the other way round and can come out smaller than the JPG.

If size matters more than losslessness, WebP is usually the better answer: it is lossless when you need it and dramatically smaller than PNG on photographic content.

Things that catch people out

Metadata does not survive. EXIF fields — camera model, GPS coordinates, capture date, copyright — are dropped, because the conversion rebuilds the image from decoded pixels rather than rewrapping the original file. For most people that is a privacy win. If you need the location data or the shot settings, copy them out before converting.

Rotation is handled correctly. Phone cameras often store photos sideways with an EXIF orientation flag telling viewers to rotate them; browsers apply that flag when decoding, so your PNG comes out the right way up rather than on its side.

The converter runs entirely in this tab. Your JPG is read from your disk into memory, decoded, re-encoded as PNG and handed back — no server sees it. That also means very large files are limited by your device rather than by an upload cap.

Questions about JPG to PNG

Will converting JPG to PNG make my photo look better?

No. JPEG compression permanently discards image data when the file is first saved, and PNG cannot reconstruct it. The PNG is a lossless copy of the JPG exactly as it is, artifacts included. What it does prevent is any further quality loss from future edits and saves.

Why is my PNG so much larger than the JPG?

Because PNG stores every pixel exactly, while JPEG approximates. Photographs contain millions of slightly different colour values, which PNG cannot compress much, so a 5 to 10 times size increase is typical for a photo. Screenshots and flat graphics compress far better and sometimes shrink.

Does converting to PNG give my image a transparent background?

Not by itself. PNG supports transparency, but a JPG has no transparency to carry over, so every pixel including the background stays fully opaque. The conversion makes transparency possible — you then have to erase the background in an image editor.

Is the EXIF data kept?

No. Camera settings, capture date and GPS coordinates are all removed, because the PNG is rebuilt from the decoded picture rather than from the original file wrapper. If you are sharing photos publicly, that is usually a benefit.

Can I convert several JPGs at once?

Yes. Drop as many as you like and they are converted one after another, with a Download all button at the end. They are processed sequentially rather than in parallel so a large batch cannot exhaust your browser tab memory.

What about JFIF, JPE and other JPEG extensions?

They all work. JFIF, JPE and JPEG are the same format as JPG under different file extensions, and the converter accepts all of them.

Are my files uploaded anywhere?

No. The conversion runs in JavaScript inside this page, on your own device. You can confirm it by opening your browser developer tools, switching to the Network tab, and converting a file — no request goes out.