Skip to content
Server-sideDeleted in 30 minutes

Convert JPG to WebP

WebP reaches the same visual quality as JPEG in noticeably fewer bytes, which is why it has become the default format for image-heavy websites. This converts your JPGs in batches inside the browser, with a quality control set by default to the point where the size saving is real and the difference is not visible.

Use this without the search next time. Prathom Workbench puts Prathom's tools in your toolbar.

Add to Chrome — free
JPGWEBP

Drop your JPG file here, or click to browse

Up to 50 MB. Deleted automatically after 30 minutes.

What it does

  • Typically 25 to 35 percent smaller than the source JPG
  • Batch conversion with ZIP download
  • Quality control with a sensible default
  • Optional resize during conversion
  • No watermark and no account

How to use JPG to WebP

  1. 1

    Add your JPGs

    Drop in one file or a folder's worth. Each is converted separately and reported with its size change.

  2. 2

    Leave the quality at 80

    WebP at 80 is roughly equivalent to JPEG at 90. Raising it much higher erodes the size advantage that made the conversion worthwhile.

  3. 3

    Optionally set a maximum width

    For website use, capping the width at the largest size your layout actually displays saves more than any quality setting will.

  4. 4

    Download the results

    Save files individually or take the batch as a ZIP.

How it works

The JPG is decoded to pixels and re-encoded by the browser's WebP encoder at the quality you choose. Nothing else happens unless you set a maximum width, in which case the image is scaled first using progressive halving.

WebP's advantage over JPEG comes from its compression method. JPEG divides the image into eight-by-eight blocks and approximates each one independently, which is why heavy compression produces visible square edges. WebP uses prediction — each block is guessed from the pixels already decoded around it, and only the error in that guess is stored. Areas that continue a pattern cost almost nothing. It also supports a full alpha channel and can go lossless, neither of which JPEG can do at all.

One detail this tool checks that many do not: after encoding, the returned data is verified to actually be WebP. A browser that cannot encode WebP does not throw an error when asked to — it silently returns a PNG instead. The result would be a file named .webp containing PNG data, which opens fine locally and is rejected by whatever you were uploading it to. If that substitution happens, you get an explicit message instead of a broken file.

When you'd use this

Website performance is the main reason, and the numbers are worth stating plainly. Images are typically 60 to 70 percent of a page's total weight. Cutting them by a third cuts the whole page by around 20 percent, which moves largest-contentful-paint measurably on mobile connections. Since page speed feeds into search rankings, this is one of the few optimizations that is both cheap and directly measurable.

Storage and bandwidth is the second case. A photo library, an image-heavy documentation site, or a media server all benefit proportionally, and the conversion is a one-off cost.

Email newsletters are a third, though check your platform first — a few still strip or refuse WebP attachments.

When not to bother

If the images are going to someone else as files rather than being displayed on a web page, stay with JPG. The compatibility gap is real and a recipient who cannot open your attachment will not care that it was 30 percent smaller.

If the images are already small — icons under a few kilobytes, thumbnails — the absolute saving is negligible and not worth managing two formats for.

And if the JPGs are oversized for where they are displayed, resize them first. That will save more than the format change, and doing both together as this tool allows is better than doing either alone.

Examples

A product photograph for an online shop

chair-front.jpg — 486 KB, 2000 x 1500 Quality 80%
chair-front.webp — 168 KB, 2000 x 1500 65% smaller

A 65 percent reduction with no visible difference at normal viewing size. Across a catalog of two hundred product images this is the single largest page-weight saving available without changing the design, and it needs no code changes beyond serving the new files.

Converting and resizing a phone photo in one pass

IMG_2290.jpg — 4.1 MB, 4032 x 3024 Quality 80%, Max width 1600 px
IMG_2290.webp — 194 KB, 1600 x 1200 95% smaller

Most of that saving comes from the resize rather than the format. A 4032px image displayed in a 1600px slot is carrying four times more pixels than anything will ever show. Format conversion is the smaller lever of the two, which is worth knowing before spending long on quality settings.

Frequently asked questions

Will everything be able to open a WebP file?

Every current web browser, yes — Chrome, Safari, Firefox and Edge have all supported it for years. Outside the browser it is patchier: older Photoshop versions need a plugin, and a fair number of upload forms, print services and photo kiosks still reject it. For a website, WebP is safe. For a file you are handing to someone else, JPG remains the safer choice.

How much smaller are the files, really?

For photographs at matched visual quality, usually 25 to 35 percent. Images with large flat areas or sharp graphics often do considerably better than that. The saving is real but it is not transformative on its own — resizing an oversized image to the dimensions it is actually displayed at will usually save more than the format change does.

Why is the default quality 80 rather than higher?

Because WebP and JPEG quality numbers are not on the same scale. WebP at 80 is approximately JPEG at 90 in perceived quality, so setting WebP to 90 or 95 produces a file that may be no smaller than the JPG you started with, which defeats the point. If you can see a difference at 80, raise it to 85 and stop there.

Does converting an already-compressed JPG make it worse?

Slightly. The JPG is decoded, discarding nothing, and then re-encoded by a different lossy algorithm, so a second round of approximation is applied on top of the first. At quality 80 this is very hard to see on a photograph. Converting from an original rather than from a JPG that has already been through several saves will always give a better result.

Should I keep the JPGs after converting?

Yes, keep the originals. WebP files cannot be converted back into the original JPG — you would get a new JPEG encoded from the WebP, with both formats' losses stacked. Treat the WebP as a distribution copy and keep the source files somewhere safe, exactly as you would with any export.