1. Add Images
2. Options
3. Your WebP Files
No images added yet. Drop a folder's worth of photos on the left — there is no file count or file size limit.
What is WebP?
WebP is an image format developed by Google that stores photographs and graphics in noticeably less space than the formats it replaces. It has a lossy mode (the JPEG equivalent, which discards detail your eye is unlikely to miss) and a lossless mode (the PNG equivalent, which reconstructs the original pixel for pixel), and unlike JPEG it supports transparency in both.
The practical reason to care is page weight. Images are usually the largest thing a web page downloads, so cutting them by a quarter to a third cuts load time on a slow mobile connection by roughly the same share — which is why Core Web Vitals scores so often improve after a site moves its images to WebP.
How to convert your images, step by step
- Drag any number of JPG, PNG, GIF, BMP or AVIF files onto the drop area, or click it to pick them from your device.
- Set the WebP quality (80 suits most photos) and, optionally, a maximum width or height to resize large images as they convert.
- Click Convert to WebP. Files are processed one after another and each row shows the original size, the WebP size and the percentage saved.
- Download files individually, or click Download All as ZIP to save the whole batch in one archive.
How much space does WebP actually save?
Google's published comparisons put lossy WebP at about 25–34% smaller than a JPEG of equivalent visual quality, and lossless WebP at around 26% smaller than an equivalent PNG. Those are averages across a test set, not a promise about your particular file:
- Screenshots, logos and flat illustrations — the biggest wins, often 50% or more, because large areas of flat colour compress extremely well.
- Camera photographs straight off a phone — a solid, predictable saving in the 25–35% range.
- JPEGs already squeezed to low quality — little or nothing, and occasionally the WebP comes out larger. Re-encoding an already-compressed image also stacks a second round of loss on top of the first, so convert from the highest-quality original you still have.
Why nothing is uploaded
Every step happens locally. The browser reads the file you selected with the File API, decodes it, redraws it onto an in-memory canvas at the size you asked for, and asks the browser's own image encoder for a WebP version. The page never makes a network request carrying your image, which is why the batch size is unlimited, why the tool keeps working offline once loaded, and why sensitive images — ID documents, medical scans, unreleased product photos — are safe to run through it.
What gets lost in conversion
- Metadata. Redrawing the image onto a canvas strips EXIF, GPS coordinates, camera settings and embedded colour profiles. Good for privacy when publishing; awkward if you catalogue by EXIF, so keep your originals.
- Animation. An animated GIF becomes a single still frame, because the browser's canvas encoder writes still images only.
- Wide-gamut colour. Images in a colour space wider than sRGB are converted to sRGB, which can shift saturated colours slightly.
When WebP is the wrong choice
Use it freely on the web, but think twice when the file has somewhere else to go. Print workflows, older desktop software, and some e-commerce, banking and government upload forms still expect JPEG or PNG. WebP is also the wrong destination for artwork you are still editing — keep a lossless master (PSD, TIFF or PNG) and treat WebP as the published copy, not the archive.