Convert PNG images to JPG in your browser. The file never leaves your device — there is no upload, no queue and no copy left on a server.
Drop a PNG file here
It stays on your device — the conversion runs in this page, with no upload.
PNG stores every pixel exactly and can be transparent; JPG throws away detail the eye is unlikely to miss and cannot be transparent at all. That trade is why a photograph saved as PNG is often several times larger than it needs to be, and why converting it to JPG is usually the fastest way to shrink it. Both the decoding and the encoding happen inside this page, so the image is never uploaded anywhere.
canvas.toBlob(callback, "image/jpeg", quality)
The image is drawn onto a canvas and re-encoded by the browser itself. Quality is a number between 0 and 1 for lossy formats, so the percentage you pick is divided by a hundred before it is passed on.
Source: MDN HTMLCanvasElement.toBlob() — quality is a number between 0 and 1 for lossy formats
A number that disagrees with its source is a defect, not a rounding preference.
What did you enter, what did the tool show, and what did you expect instead? If you have a source that disagrees with ours, a link to it is the most useful thing you can send.
Opens your mail app with the page and tool already filled in.
Convert PNG images to WebP without losing transparency. Everything runs in your browser, so nothing is uploaded and nothing is stored.
Convert JPG photographs to WebP to cut page weight. The conversion happens in your browser, with no upload and no account.