- Why Are Images Saved as WebP in the First Place?
- Method 1: Chrome Extension (Fastest — Recommended)
- Method 2: Online Converter Websites
- Method 3: Windows Paint (Built-in — No Download Required)
- Method 4: macOS Preview (Built-in)
- Method 5: Photoshop or GIMP (Desktop Apps)
- Method 6: Command Line (ImageMagick)
- Understanding Quality Loss: When Does It Actually Matter?
- WebP to JPG Quality Comparison
- Choosing the Right Method
- Frequently Asked Questions
- Why Are Images Saved as WebP in the First Place?
- Method 1: Chrome Extension (Fastest — Recommended)
- Method 2: Online Converter Websites
- Method 3: Windows Paint (Built-in — No Download Required)
- Method 4: macOS Preview (Built-in)
- Method 5: Photoshop or GIMP (Desktop Apps)
- Method 6: Command Line (ImageMagick)
- Understanding Quality Loss: When Does It Actually Matter?
- WebP to JPG Quality Comparison
- Choosing the Right Method
- Frequently Asked Questions
You have found an image you want to save — a product photo, a design reference, a meme — but Chrome downloads it as a .webp file that nothing on your computer can open. This frustrating problem affects millions of people every day. WebP is increasingly the default image format on the web, but desktop software support still lags behind.
This guide covers every method to convert WebP to JPG, from the one-click Chrome extension to command-line tools for power users. We will also explain why quality loss happens and how to avoid it.
Convert WebP to JPG in One Click
Right-click any WebP image in Chrome and save it as JPG or PNG instantly. No uploads, no accounts, no waiting.
Add to Chrome — FreeWhy Are Images Saved as WebP in the First Place?
Chrome has changed its default behavior: when you right-click an image on a modern website and select "Save image as," the file is saved in whatever format the website serves it — and websites increasingly use WebP because it is 25–35% smaller than an equivalent JPG at the same visual quality. That means faster page loads and lower bandwidth costs for the site.
The problem is that WebP support outside of web browsers is still inconsistent. Older versions of Photoshop, Microsoft Office, Windows Photos (on older Windows versions), and most image-editing apps either do not open WebP at all or require a plugin. Converting to JPG or PNG makes the file universally usable.
Method 1: Chrome Extension (Fastest — Recommended)
The WebP to JPG/PNG Converter extension integrates directly into Chrome's right-click menu. There is no interface to learn and no steps to follow — it just works.
How to use it
- Install the extension — Click "Add to Chrome" from the Chrome Web Store page. The installation takes about 10 seconds.
- Navigate to the image — Open any webpage containing a WebP image you want to save.
- Right-click the image — You will see new options: Save image as JPG and Save image as PNG.
- Choose your format — Click "Save image as JPG" for photographs, or "Save image as PNG" for images with transparent backgrounds (logos, illustrations).
- File saved — Your browser's standard Save dialog opens with the correct file extension already set.
The conversion happens entirely within your browser — no image data is sent to any server. This is important for images that may be private or sensitive, and it means conversion is instantaneous regardless of your internet speed.
Method 2: Online Converter Websites
If you have WebP files already saved to your computer and need to convert them, online converter websites are a reasonable option for non-sensitive images.
Popular options include:
- Squoosh (squoosh.app) — Google's own open-source image compression tool. Drag in a WebP, choose JPG as the output, set quality to 90%, download. Excellent quality control with a live before/after comparison.
- CloudConvert — Handles batch conversion. Upload multiple WebP files, convert them all to JPG, download as a ZIP. Free tier allows a limited number of conversions per day.
- ILoveIMG — Simple interface, supports bulk WebP-to-JPG conversion. Free with file size limits.
Method 3: Windows Paint (Built-in — No Download Required)
On Windows 10 and 11, the built-in Paint app can open WebP files and save them as JPG. No extensions or downloads needed.
Steps
- Right-click the WebP file in File Explorer
- Select Open with → Paint
- Once the image is open, press Ctrl+Shift+S (Save As)
- In the "Save as type" dropdown, select JPEG
- Click Save
The quality of Paint's JPEG output is acceptable for most purposes, but it uses a fixed quality setting that you cannot adjust. For maximum quality, use Squoosh or the Chrome extension instead.
Method 4: macOS Preview (Built-in)
On Mac, the Preview app handles WebP natively and can export to JPG or PNG with full quality control.
Steps
- Double-click the WebP file — it opens in Preview
- Go to File → Export
- Choose JPEG or PNG from the Format dropdown
- For JPEG, drag the Quality slider to at least 90% to preserve detail
- Click Save
Preview also supports batch export. Select multiple WebP files in Finder, open them all in Preview, then use File → Export Selected Images to convert them all at once to JPG.
Method 5: Photoshop or GIMP (Desktop Apps)
Adobe Photoshop has natively supported WebP since version 23.2 (released January 2022). If you have an older version, you will need to install a WebP plugin or update Photoshop.
GIMP (free, cross-platform) also supports WebP natively. Open the file and use File → Export As → JPG with quality set to 90 or higher.
Method 6: Command Line (ImageMagick)
For bulk conversion of hundreds of files, ImageMagick's command-line tool is the most efficient approach:
# Convert a single file
magick input.webp -quality 92 output.jpg
# Convert all WebP files in a folder
for f in *.webp; do magick "$f" -quality 92 "${f%.webp}.jpg"; done
# macOS/Linux (using bash)
for f in *.webp; do convert "$f" -quality 92 "${f%.webp}.jpg"; done
The -quality 92 flag sets JPEG compression at 92%, which preserves virtually all visual detail while producing a file about 20% smaller than a 100% quality JPEG. Values between 85 and 95 are considered the "sweet spot" for quality vs. File size.
Understanding Quality Loss: When Does It Actually Matter?
WebP uses a fundamentally different compression algorithm than JPEG. Both are lossy formats, but they encode pixel data differently. When you convert WebP to JPG, you are re-encoding an already-compressed image into a different lossy format — this introduces a second generation of compression artifacts.
In practice, the quality loss is only visible if you:
- Use a low JPEG quality setting (below 75%)
- Are viewing at 100%+ zoom on a high-resolution display
- Are working with text-heavy images or sharp geometric shapes
For photographs viewed at normal sizes on screens or printed at standard resolutions, a WebP-to-JPG conversion at 90%+ quality is visually indistinguishable from the original. The human eye simply cannot detect the difference.
Save Any WebP as JPG — Right From Chrome
Stop fighting with .webp files. One right-click is all it takes to save any image in the format you actually need.
Install Free ExtensionWebP to JPG Quality Comparison
| JPEG Quality Setting | Visual Quality | File Size vs. WebP | Best For |
|---|---|---|---|
| 95–100% | Excellent — no visible artifacts | 2–4x larger | Print, archiving, professional editing |
| 85–94% | Very good — barely distinguishable | 1.5–2x larger | General use, sharing, web display |
| 75–84% | Good — minor artifacts at 100% zoom | Similar to WebP | Email attachments, casual sharing |
| Below 75% | Noticeable artifacts | Smaller than WebP | Thumbnails, previews only |
Choosing the Right Method
| Scenario | Best Method |
|---|---|
| Single image found while browsing | Chrome extension (right-click → Save as JPG) |
| Local WebP file on Windows | Paint (quick) or Squoosh (best quality) |
| Local WebP file on Mac | Preview (built-in, excellent quality) |
| Batch conversion of 10+ files | ImageMagick (command line) or XnConvert |
| Privacy-sensitive images | Chrome extension or desktop app (never online converters) |
The Easiest Solution for Everyday Browsing
Install once, use forever. WebP to JPG/PNG Converter adds a "Save as JPG" option to every image you right-click in Chrome.
Add to Chrome — FreeFrequently Asked Questions
Does converting WebP to JPG reduce image quality?
Converting WebP to JPG does involve a re-compression step, but the quality loss is negligible when you use a high-quality setting (90–95% quality). The visual difference is undetectable to the human eye at normal viewing sizes. Using a low quality setting (below 75%) will produce visible compression artifacts.
Why can't I open WebP files on my computer?
WebP is a relatively modern format developed by Google in 2010. Older applications — including Windows Photo Viewer on Windows 7/8, older versions of Photoshop (pre-2022), and many legacy image editors — do not natively support WebP. Converting WebP to JPG or PNG makes the file universally compatible.
Can I convert WebP to PNG instead of JPG?
Yes, and PNG is often the better choice when the original WebP image has a transparent background. JPG does not support transparency, so transparent areas would become solid white. Choose PNG for logos, illustrations, and images with transparent areas; choose JPG for photographs.
How do I convert multiple WebP files at once?
For multiple local files, use ImageMagick (command line), XnConvert, or IrfanView for batch conversion. For images you encounter while browsing, the WebP to JPG/PNG Converter Chrome extension handles each one with a single right-click.
Do WebP images lose transparency when converted to JPG?
Yes. JPG does not support alpha transparency. Transparent areas in a WebP image become solid white (or black) when converted to JPG. If the image has transparency, convert to PNG instead to preserve it.
What is the best free WebP converter?
For images encountered while browsing, the WebP to JPG/PNG Converter Chrome extension is the most convenient free option. For offline batch conversion, IrfanView (Windows) and XnConvert (cross-platform) are both free and produce excellent quality output.
Is it legal to convert and save WebP images from websites?
Converting a file format does not change its copyright status. If you have permission to save an image as JPG, converting the WebP version is equally permitted. Copyrighted images remain protected regardless of format. Always respect copyright and website terms of service.