PixConvertPixConvertBlog

WebP to JPGWindows

Convert WebP to JPG on Windows

Works in Chrome, Edge, and Firefox on Windows 10 and 11. No software to install — your files never leave your PC.

Drop your WebP files here

or click to browse — multiple files supported

Your files never leave your device

4 ways to convert WebP to JPG on Windows

1

Use PixConvert in your browser (recommended)

Works on any Windows version, no install needed. Drag your WebP file into the converter above and download the JPG. Supports batch conversion of multiple files at once.

✓ Free · ✓ No install · ✓ Batch supported · ✓ Files stay on your PC

2

Microsoft Paint (built-in, free)

Paint can open WebP files and save them as JPG — no install required.

  1. 1.Right-click the .webp file → Open with → Paint
  2. 2.Go to File → Save as → JPEG picture
  3. 3.Choose a location and click Save

⚠ One file at a time. Transparent areas become white.

3

Windows Photos app (Windows 11)

The Photos app in Windows 11 can view WebP but the export option is hidden.

  1. 1.Open the WebP file in Photos
  2. 2.Click the ⋯ menu → Save a copy
  3. 3.Change the file type dropdown to JPEG

⚠ Windows 10 may need the WebP Image Extension from the Microsoft Store first.

4

Command line — batch convert (PowerShell + ImageMagick)

For converting many files at once, ImageMagick is the power-user option.

# Install ImageMagick first from imagemagick.org
# Then in PowerShell:

# Convert a single file
magick input.webp output.jpg

# Batch convert all .webp in current folder
Get-ChildItem *.webp | ForEach-Object {
  magick $_.FullName "$($_.BaseName).jpg"
}

Frequently Asked Questions

Does Windows 11 support WebP files natively?

Windows 11 Photos app can open WebP files but cannot export or save them as JPG. Windows 10 requires installing the WebP Image Extensions from the Microsoft Store. Neither version offers a built-in "Save as JPG" option.

Can I use Microsoft Paint to convert WebP to JPG on Windows?

Yes. Open the WebP file in Paint (right-click → Open with → Paint), then go to File → Save as → JPEG picture. This works on both Windows 10 and Windows 11 and is completely free.

How do I convert multiple WebP files to JPG on Windows?

Use the batch converter on this page — drag and drop multiple WebP files at once. For command-line batch conversion, see: for %f in (*.webp) do magick "%f" "%~nf.jpg" using ImageMagick.

Why does Chrome save images as WebP on Windows?

Websites serve WebP images because they're smaller and faster. Chrome saves them in the original format. Use our converter to turn them into JPG after downloading.