Convert WebP to JPG
Turn WebP images into JPG files that open anywhere, in your browser. Useful when an app, printer or older program refuses to accept a WebP file.
Drop files here (up to 50)
or paste from the clipboard
Preview
Choose an image and the result appears here as you change the options.
Shows the framing and the colour that replaces transparency. Compression quality is not simulated.
How it works
Before anything is decoded, the file's first bytes are inspected: a RIFF header, a WEBP tag, and a VP8X chunk whose flag byte at offset 20 marks an animation. Animated files are refused outright rather than silently reduced to frame one. A still image is then decoded, composited onto the background colour you chose, and encoded as baseline JPEG by the browser itself.
Measured results
These figures come from running this exact tool over a fixed set of sample files on every build, not from an estimate.
| Sample file | Settings | Before | After | Change |
|---|---|---|---|---|
| logo-transparent.webp | quality 85 | 8 KB | 12 KB | +48% |
| photo-gradient.webp | quality 85 | 519 KB | 298 KB | −43% |
Benchmark run 2026-08-01.
What to watch out for
An animated WebP handed to the browser decoder returns its first frame and reports no problem at all. Rather than give you a still image and let you discover the loss later, this tool reads the header and refuses. Use a dedicated animation tool for those files.
JPEG has no way to record transparency, so the alpha channel is resolved against the background you set. A logo with soft antialiased edges will show a visible fringe of that colour once it sits on a page of any other shade.
WebP is the more efficient format, so the JPEG you get back is usually larger than the file you started with, sometimes by half again. That is the expected outcome and the reason to convert is compatibility, never file size.
Limits
Files up to about 50 MB work reliably. Beyond that, the ceiling is your device's memory rather than any rule we impose — the work happens on your own machine. Tested in Chrome 140, Firefox 143, Safari 18.
Why anyone still needs JPG
WebP has been readable in every major browser for years, which is exactly why it now turns up in your downloads folder unannounced — saving an image from a web page often produces one. The trouble starts everywhere that is not a browser.
Photo printing services frequently reject it. Older versions of Photoshop need a plugin. Plenty of content management systems, e-commerce backends, government upload forms and embedded devices accept JPEG and nothing else. Converting is not a technical improvement; it is a compatibility tax, and this tool exists to make paying it quick.
What the conversion costs
Two things, both worth knowing before you start.
The file will usually get bigger. WebP compresses more efficiently, so re-encoding the same picture as JPEG at comparable quality typically produces a larger file. If you were hoping to save space, this is the wrong direction.
The image also passes through a second lossy compression. The pixels arriving here have already been through WebP’s encoder, and JPEG will discard a little more. At quality 85 the difference is very hard to see on a photograph, but it is real and it is permanent, so keep the WebP if you might need it again.
The animation case
WebP can hold an animation, much like a GIF. That is a genuine trap for converters, because the standard browser decoding path does not treat an animated file as an error — it quietly hands back the first frame.
This tool checks the file header before decoding and stops. You get a clear message instead of a still image you might not notice was wrong until much later.
Nothing leaves your machine
The decode, the compositing and the JPEG encode all happen in a Web Worker inside your browser. There is no upload, so there is no queue, no size cap set by someone else’s hosting bill, and no copy of your image sitting on a server whose retention policy you have never read.
Your files never leave your browser. Last updated 2026-08-01.
Next step
Your file is already here in this browser, so the next tool starts with it loaded.
Related tools
- Convert JPG to WebPConvert JPG photos to WebP in your browser and cut page weight without a visible quality drop. Nothing is uploaded and no watermark is added.
- Convert WebP to PNGConvert WebP images to PNG in your browser, keeping transparency. Expect the file to grow — PNG stores every pixel exactly, artefacts included.