Notepad - How to convert WebP to JPG (or JPEG) in any situation
How to convert WebP to JPG (or JPEG) in any situation
A practical guide to converting WebP to JPG on Windows, Mac, iPhone, Android, and the command line — with quality settings that prevent visible degradation.
March 10, 2026 · 12 min read
WebP is the format browsers love: 25–35% smaller than a comparable JPG, fast to load, supported everywhere on the modern web. The problem is that “everywhere on the web” is not the same as “everywhere you need to send a file.” Older CMS platforms, email clients, print services, design handoff tools, and Windows machines with outdated software still stumble on WebP. When that happens, converting to JPG — or JPEG, which is the same format with a different file extension — is the fastest fix.
This guide covers every practical way to do it, across every platform.
Why WebP files cause compatibility problems
Google introduced WebP in 2010 and browsers adopted it gradually. As of 2024, all major browsers render WebP natively. But browser support and application support are different things.
The compatibility gaps that still cause real friction:
- Email clients. Gmail and Outlook display WebP in the browser version, but some desktop email clients and corporate mail systems strip or block non-standard image types.
- CMS and e-commerce platforms. Shopify, older WordPress installs, and many custom admin panels either reject WebP uploads or display them incorrectly in the media library.
- Design and document tools. Microsoft Office, older versions of Adobe products, and some design handoff tools expect JPG or PNG. Dropping a WebP into a Word document or a Figma export often produces an error or a placeholder.
- Print workflows. Print-on-demand services and professional print shops almost universally require JPEG or TIFF. WebP is not a print format.
- Shared files. If you send a WebP to someone on an older Android device or Windows machine that has not received the WebP codec update, the file will not open.
JPG has existed since 1992 and is supported by every image viewer on every operating system. That is the only reason to convert — pure compatibility.
How to convert WebP to JPG in the browser
The quickest method requires no software and no uploads. A browser-based converter processes the file locally using your device’s own resources.
- Open the WebP to JPG tool on this page.
- Drop your
.webpfile into the conversion area, or click to select it. - The conversion runs entirely in your browser. The file never leaves your device.
- Click download to save the
.jpgfile.
This works on Windows, Mac, Linux, and mobile browsers. Because processing happens locally, there is no file size limit imposed by a server, no waiting in a queue, and no risk that a third party retains your image. You can drop several files at once and download them all.
For one-off conversions — and for anything sensitive — this is the method to use first.
What happens to your image during conversion
Understanding the technical changes helps you avoid surprises.
Lossy to lossy compression. WebP and JPG both use lossy compression. Converting does not add a second generation of quality loss on top of the original encoding — instead, the WebP is decoded to raw pixel data and then re-encoded as JPG. The quality of the output depends on the quality setting you choose, not on how compressed the source WebP was.
Transparency disappears. WebP supports an alpha channel, meaning a WebP image can have transparent areas. JPG has no alpha channel. When you convert a WebP with transparency to JPG, those transparent areas are filled with a solid color — usually white. If you need to preserve transparency, convert to PNG instead.
File size usually increases. Because WebP is more efficient than JPG at the same visual quality, the JPG output is typically larger. A 200 KB WebP might produce a 300–400 KB JPG at 90% quality. That is normal and expected.
EXIF and color accuracy are preserved. The conversion does not shift colors. What you see in the WebP is what you get in the JPG. EXIF metadata — camera make, shooting date, GPS coordinates — is retained by most converters, including the browser tool on this page. If you are converting photos and the metadata matters (for cataloguing or legal reasons), spot-check that a sample output file still carries it.
Convert WebP to JPG on Windows
Windows 10 and 11 both support WebP natively, so you do not need extra software for one-off conversions.
Using Paint: Open the WebP file in Paint (right-click → Open with → Paint), then go to File → Save as → JPEG picture. Choose a location and save. Paint gives you no quality control, but it is instant.
Using the Photos app: Right-click the WebP file, choose Open with → Photos, click the three-dot menu in the top right, then Save as → change the file type to JPEG. The Photos app offers slightly more options than Paint but is still limited for bulk work.
For older Windows versions that do not open WebP natively, the browser tool on this page is the easiest workaround — no installation needed.
Convert WebP to JPG on Mac
macOS has supported WebP in Preview since Ventura (2022). Earlier versions of macOS may require a different approach.
Using Preview (single file):
- Open the WebP file in Preview.
- Go to File → Export.
- Choose JPEG from the Format dropdown.
- Adjust the Quality slider (85–92 for most images).
- Save.
Using Preview (batch):
- Select multiple WebP files in Finder.
- Right-click → Open With → Preview. All files open in one Preview window.
- Press Command+A to select all thumbnails in the sidebar.
- Go to File → Export Selected Images.
- Choose JPEG as the format and pick a destination folder.
- Click Choose.
Preview’s batch export is fast and requires no third-party software. It is the right default for converting a folder of WebP files on Mac.
Using the built-in sips command:
macOS ships with a command-line tool called sips (Scriptable Image Processing System) that handles batch conversion without installing anything. Open Terminal, navigate to your folder, and run:
for f in *.webp; do sips -s format jpeg -s formatOptions 85 "$f" --out "${f%.webp}.jpg"; done
This converts every .webp file in the current folder to JPG at 85% quality.
Using Automator (macOS Monterey and earlier): Open Automator, create a new Workflow, add a “Get Specified Finder Items” step to select your files, then add a “Change Type of Images” action and set the output to JPEG. Run the workflow. On macOS Monterey and later you can save this as a Quick Action and trigger it by right-clicking files in Finder.
Convert WebP to JPG on iPhone and iPad
Safari on iOS has supported WebP since iOS 14, so WebP images display fine in the browser. Saving or sharing them as JPG requires an extra step.
Browser tool (recommended):
- Open this page in Safari.
- Tap “Select images” and choose your WebP file from Files or Photos.
- The conversion runs in the browser — no upload.
- Tap Download to save the JPG to your Files folder.
Files app shortcut: On iOS 16 and later, the Files app can sometimes re-encode images during a share action. The result varies by app, so the browser tool is more reliable.
If you convert WebP images regularly on iPhone, a browser shortcut to this tool in your Safari favourites is the most friction-free setup.
Convert WebP to JPG on Android
Chrome on Android fully supports WebP, and the browser tool works the same way it does on desktop.
- Open this page in Chrome.
- Tap “Select images” and choose your WebP file from Downloads or Gallery.
- Tap Download to save the converted JPG.
The file saves to your Downloads folder. Open the Files app to find it and move it to Gallery if needed.
Right-click save issue: If you long-press an image on a website and save it, Chrome saves it in the format the website serves — which is often WebP. Converting after the fact with the browser tool is the cleaner fix.
Batch conversion: when to use dedicated software
For dozens or hundreds of files, the browser tool and built-in OS apps have practical limits. Desktop software handles bulk work more reliably.
XnConvert (Windows, Mac, Linux — free) is the strongest option for most people. It supports drag-and-drop of entire folders, lets you set output format and quality, and can rename files or apply transforms (resize, sharpen, watermark) during the same pass. The learning curve is low.
IrfanView (Windows — free) is lighter-weight. Open a folder, select all WebP files, then File → Batch Conversion/Rename, choose JPEG as the output, and run. It processes hundreds of files in seconds.
ImageMagick (Windows, Mac, Linux — free, command-line) is the right tool if you are scripting or need fine-grained control:
# Single file with quality control
convert -quality 85 input.webp output.jpg
# Batch convert an entire folder
mogrify -format jpg -quality 85 *.webp
Install on Mac with brew install imagemagick, on Ubuntu with apt install imagemagick, or download the installer from imagemagick.org on Windows.
FFmpeg (Windows, Mac, Linux — free, command-line) is video-focused but handles image conversion cleanly:
# Single file
ffmpeg -i input.webp output.jpg
# Batch convert (Mac/Linux)
for f in *.webp; do ffmpeg -i "$f" "${f%.webp}.jpg"; done
Install on Mac with brew install ffmpeg or download from ffmpeg.org.
Choosing a WebP to JPG converter
Several types of converters exist. They differ in one important dimension: where your file goes.
Browser-based local converters (like this tool) process the file on your device. Nothing is uploaded. This is the right choice for sensitive images — client work, internal screenshots, photos with identifiable people — and for files you want converted immediately without waiting.
Upload-based online converters send your file to a remote server, convert it there, and return a download link. Some are reputable, some are not. Most impose limits on file size (often 5–10 MB), number of conversions per day, or both. They are useful when you are on a device where a local tool is not available, but they require trust in the service.
Desktop software like XnConvert, IrfanView, or Photoshop (which added native WebP support in CC 2021) handles high volume well. If you regularly convert dozens or hundreds of WebP files, a desktop application with batch processing is worth installing.
For most people converting a WebP to JPG once or a few times, the browser tool is the right default.
Quality settings that prevent visible degradation
JPG quality is expressed as a percentage from 1 to 100. Higher means better quality and larger file size. The practical guidance:
- 85–92% is the right range for most photos and product images. You get a significant file size reduction compared to 100% with no visible loss to the naked eye at normal viewing sizes.
- 75–84% works well for screenshots, UI captures, and images with large areas of flat color, where compression artifacts are less noticeable.
- 93–100% is appropriate when the image contains fine text, sharp lines, or detailed gradients that will be viewed at high zoom, or when it will be printed.
- Below 75% produces visible compression artifacts — blocky patches, color banding — and is only worth it when file size is the only consideration.
If you are converting a WebP that was already a photo, 90% is a safe default. Run the conversion, spot-check the result at 100% zoom, and adjust if anything looks off.
Troubleshooting common problems
The converted JPG looks pixelated or blocky. The quality setting is too low. Re-run the conversion at 85–90%.
Transparent areas turned white. That is expected — JPG has no transparency. If you need a transparent background, convert to PNG instead.
The file is larger than expected. Also expected. WebP is more efficient than JPG; the same image in JPG will almost always be larger. This is not a conversion error.
The file still shows as .webp after saving from a browser. You saved it from the website directly (right-click → Save image). The browser saves it in whatever format the site served. Use the converter tool to change the format after saving.
Preview on Mac won’t open the file. On macOS Monterey and earlier, Preview’s WebP support was incomplete. Use the browser tool or update macOS.
EXIF data is missing from the output. Some online converters strip metadata. The browser tool on this page preserves it. If metadata matters, verify with a tool like ExifTool (exiftool output.jpg) or check the file properties in Photos.
ImageMagick returns an error on WebP files. Make sure your ImageMagick install was compiled with WebP support. On Mac, brew install imagemagick includes it by default. On Linux, you may need apt install libwebp-dev first.
Frequently asked questions
What is the difference between JPG and JPEG?
Nothing. They are the same format. .jpg and .jpeg are interchangeable file extensions for the same image codec — JPEG. The four-character .jpg extension became standard on older Windows systems that required short file extensions. Any tool that opens .jpg opens .jpeg and vice versa.
Can I convert multiple WebP files to JPG at once?
Yes. The browser tool on this page handles multiple files — drop several .webp files at the same time and download them all. For very large batches (hundreds of files), ImageMagick’s mogrify command or XnConvert is more efficient.
Will converting WebP to JPG reduce image quality? Only if you choose a low quality setting. At 90% JPG quality, the output is visually identical to the source for photographs. The conversion itself decodes the WebP to raw pixels and re-encodes as JPG — there is no compounding quality loss beyond what the quality percentage implies.
Does converting WebP to JPG preserve EXIF data? Most conversion tools preserve EXIF metadata (camera model, date, GPS). The browser tool on this page retains it. Upload-based online converters vary — some strip all metadata. Check a sample output file if the metadata matters.
Why does my downloaded image save as WebP even when I choose Save Image?
Browsers save images in their native format. If a website serves a WebP, right-clicking and choosing “Save image as” saves a .webp file. To get a JPG, save the WebP first and then convert it, or use a browser extension like “Save Image as Type” for Chrome that intercepts the save action and converts the format.
Does conversion work on mobile? Yes. The browser tool works on Safari (iOS) and Chrome or Firefox on Android. The conversion runs in the browser and the download saves to your files folder or camera roll.
Can Photoshop open and convert WebP files? Yes. Adobe Photoshop CC 2021 and later support WebP natively. Open the file, then File → Export As → JPEG and set your quality. Older versions require a third-party plugin or pre-conversion.
Is there a way to convert WebP to JPG without installing anything on Mac?
Yes — three ways. The browser tool on this page, Preview’s Export function (File → Export → JPEG), and the built-in sips command in Terminal. All three require nothing beyond a standard macOS install.
Try the tool
WebP to JPG
Convert WebP images to JPG in your browser with local processing, without uploads or watermarks.
ConvertRelated posts
WebP vs JPG: which format should you use?
WebP is 25–35% smaller than JPG at the same quality, and every major browser has supported it since 2020. Here is when each format makes sense — and when to convert between them.
March 31, 2026 · 9 min read
How to compress a video for Discord (free, no install)
Discord's 25 MB free limit blocks a lot of clips. This guide covers the fastest ways to compress video for Discord — in the browser, on desktop, and on mobile — without destroying quality.
March 31, 2026 · 8 min read
How to Convert MKV to MP4 (Without Losing Quality)
MKV files won't play on iPhones, most smart TVs, or social platforms. Here are the fastest ways to convert MKV to MP4 on any device—browser, desktop, or command line.
March 31, 2026 · 9 min read