LivreImage
PT

Convert JPG to WebP

Make your website faster: WebP delivers the same visual quality in much smaller files than JPG.

Choose your images Tap or click to choose — or drag them here. On desktop you can also paste with Ctrl+V.
  • Nothing uploaded
  • Free, no sign-up
  • Strips EXIF
  • Batch files

WebP typically cuts 25–35% of the size compared to the equivalent JPG — fewer bytes, faster pages and a better Core Web Vitals score, which Google factors into rankings.

Compatibility: every modern browser displays WebP. If your current browser can't export the format (some older Safari versions), the tool warns you and delivers PNG instead.

How it works

Before anything else, check that the WebP button is actually available — in Safari it is not, and the page will tell you so.

  1. Add the JPGs

    Drag in a whole folder if you like. Convert from the highest-quality originals you have rather than from files that have already been squeezed for the web.

  2. Confirm WebP is selected

    It is preset, but if your browser has no WebP encoder the button is disabled, the output falls back to PNG and a notice says so. Quality is set here too — 82 is the starting point.

  3. Generate and check the total

    Click Generate images. The bar at the bottom adds up the bytes saved across the whole batch, which is the number worth writing down before you change anything in your HTML.

Safari cannot write WebP, and that is not a version problem

This page encodes through the browser's own canvas. Chrome, Edge, Firefox, Opera and Samsung Internet all ship a WebP encoder there. Safari does not — not on macOS, not on iOS, in no version released so far. It displays WebP perfectly well. It simply cannot write one.

That matters more than it first sounds, because in practice every browser on an iPhone or iPad renders through WebKit. Chrome for iOS is Safari underneath. There is effectively no browser on an Apple phone that can write a WebP file from a web page.

The page checks before you start rather than failing halfway. If the encoder is missing, the WebP button is disabled, the output falls back to PNG, and a message tells you it happened. To actually get .webp files, use Chrome, Edge or Firefox on a desktop, or Chrome on Android.

Converting is the easy half — serving it is the other half

A folder of .webp files does nothing for your page speed until the HTML points at them, and renaming an extension in an img tag is not a migration.

  • Serve both: a picture element with a WebP source and a JPG img fallback lets each browser choose, and costs you nothing in markup complexity.
  • Or negotiate on the server: browsers send an Accept header that names image/webp, so one URL can return WebP to those who ask for it and JPG to those who do not. Send Vary: Accept with it, or a CDN will cache one answer and hand it to everybody.
  • Purge the CDN after swapping the files. Stale cached objects are the usual reason a conversion appears to have changed nothing.
  • The Core Web Vitals payoff lands in LCP, and only if the image you converted is the one the browser paints first. Converting everything below the fold is tidy, but it will not move that number.

Convert from the original, not from the copy already on your server

The number WebP is known for — Google's own study puts it at 25 to 34 percent smaller than JPEG at matching SSIM — assumes a clean source. A JPG that was already squeezed for the web has spent its detail, so most of what you save on top of it comes out of the picture rather than out of the redundancy.

In practice: a quality-95 export taken to WebP at 82 is dramatically lighter and looks the same. That same shot squeezed to JPEG 60 first and then converted gives you a small file that looks worse than either version you started with. Go back to whatever you keep as the master.

Worth being straight about the encoder too. It is whatever your browser ships, tuned for speed rather than the last few percent. A command-line cwebp or a build-step plugin will usually squeeze a little more out of the same image. The trade is that this runs now, on a whole folder, with no toolchain to install.

When WebP is not the win

The format is a genuine improvement over JPEG for photographic content on a web page. Outside that, the case gets thin fast.

  • Logos, icons and flat diagrams: SVG is smaller and stays sharp at any size, and even a PNG can beat lossy WebP on hard edges.
  • Images that are already tiny. Below a few kilobytes the gain is noise, and you have added a fallback path for nothing.
  • Anything that leaves your site — email attachments, files someone will open in old desktop software. Browsers all read WebP; a lot of other software still does not.
  • Images that are simply too large for where they go. Halving the width does more for the byte count than any format change ever will, and that is what Resize image is for.
  • If your browser can encode AVIF, an AVIF button appears next to WebP on the format bar. In practice that means Chrome and Edge — Firefox and Safari display AVIF but do not write it from a canvas. AVIF normally goes smaller still, and takes noticeably longer per image.

Frequently asked questions

How much smaller is WebP?

Typically 25 to 35% smaller than JPG at the same apparent quality. On large images the absolute saving is substantial.

Do all browsers support WebP?

Every current browser does, Safari included. Patchy support lives in desktop applications and legacy systems, not on the web.

Is it worth it for my website?

Almost always. Images are usually the bulk of a page's weight, and this is the easiest trade to make without changing how it looks.

Should I keep the original JPG?

Yes. Keep the original as your source and generate WebP for publishing, so you can re-export at another quality later.

WebP or AVIF?

AVIF compresses better but takes much longer to encode and has slightly narrower support. WebP is the safer middle ground today.

Can it produce lossless or animated WebP?

Animated, no — the canvas encoder writes a single frame, and nothing on this site outputs animation. Lossless depends on the browser: Firefox switches to the lossless WebP encoder when quality is set to 100, so pushing the slider all the way up there gives you a lossless file, usually a large one. Chrome and Edge do the same at 100.

Will WebP break for any of my visitors?

Not in a browser — every current one displays it, including Safari, which reads WebP perfectly well even though it cannot write it. The real risk sits elsewhere: older email clients, some CMS upload validators and legacy desktop software still reject it. Keep a JPG of anything that leaves the site.

Does switching to WebP help SEO?

Indirectly. Google Images indexes WebP without complaint, and the format itself is not a ranking signal. What counts is the page getting faster, which is why the conversion only pays off once the image is actually being served and it is one that visitors wait for.

Advertisement