How to Convert WebP to PNG or JPG (Free, No Upload)

4 min read
Beginner Image WebP PNG JPG Convert

You saved an image from a website and it downloaded as a .webp file. Now you cannot open it, upload it, or use it anywhere because the app or website you need does not support WebP. Sound familiar?

WebP is Google's image format that is smaller than JPG and PNG but not supported everywhere. This guide shows you how to convert WebP to formats that work anywhere — quickly, for free, and without uploading your images to anyone's server.

Convert WebP Right Now

WebP to PNG

Use our free WebP to PNG converter:

  1. Drop your WebP file(s)
  2. Click Convert
  3. Download the PNG

Supports batch conversion — drop multiple files and convert them all at once.

PNG to JPG

Need JPG instead? Use our PNG to JPG converter:

  1. Drop your PNG file
  2. Adjust the quality slider
  3. Choose a background color (replaces transparency)
  4. Download

What is WebP and Why Does It Exist?

WebP is an image format created by Google in 2010. It produces smaller files than JPG and PNG while maintaining similar quality:

Format Photo (5 MB original) Transparency Animation
JPG ~500 KB No No
PNG ~2 MB Yes No
WebP ~350 KB Yes Yes
GIF ~3 MB Yes (1-bit) Yes

WebP is 25-35% smaller than JPG and up to 80% smaller than PNG. That is why every major website uses it — faster loading = better user experience and SEO.

The problem: While all modern browsers support WebP, many other apps do not:

  • Older versions of Photoshop
  • Some email clients
  • Many online forms and upload fields
  • Older mobile apps
  • Some social media platforms (for profile photos)
  • Printing services

When to Use Each Format

Situation Best Format
Sharing a photo via email JPG — universally supported, small size
Screenshot with text PNG — preserves sharp text and edges
Website images WebP — smallest size, all browsers support it
Logo with transparency PNG — transparent background
Uploading to a form that rejects WebP JPG or PNG — convert first
Printing PNG or TIFF — lossless quality

How to Stop Chrome from Saving WebP

When you right-click and "Save image as" in Chrome, Google-served images often save as WebP even when you want JPG or PNG.

Workaround options:

  1. Change the file extension: Save the file, then rename .webp to .jpg — this does not always work because the file is still WebP internally
  2. Use our converter: Save as WebP, then convert with WebP to PNG
  3. Open in a new tab: Right-click the image → "Open image in new tab" → sometimes the direct URL serves JPG
  4. Browser extension: "Save Image as Type" extension lets you choose JPG/PNG when saving

Convert on Your Phone

iPhone

iPhones save photos as HEIC by default (similar problem to WebP). To convert:

  • Settings → Camera → Formats → Most Compatible — this switches to JPG
  • For WebP files: open in Safari, take a screenshot, crop it (quick but loses quality)
  • Or visit our WebP to PNG tool in Safari

Android

  • Open the WebP image in Google Photos
  • Share → Save to device (sometimes converts automatically)
  • Or visit our WebP to PNG tool in Chrome

Batch Converting Multiple Images

Our WebP to PNG tool supports batch conversion:

  1. Select multiple WebP files at once
  2. All convert simultaneously
  3. Download each one or download all

For large batches (100+ images), command-line tools are faster:

# Linux/Mac — convert all WebP to PNG in a folder
for f in *.webp; do
  dwebp "$f" -o "${f%.webp}.png"
done

# Using ImageMagick
mogrify -format png *.webp

Image Quality Comparison

When converting between formats, you may lose some quality:

Conversion Quality Loss
WebP → PNG None — PNG is lossless
WebP → JPG Minimal — JPG compression removes some detail
PNG → JPG Minimal — mainly affects transparency (becomes white/colored background)
JPG → PNG None — but file gets bigger for no benefit
Any → WebP Minimal — WebP is very efficient

Rule: When possible, convert to PNG for no quality loss. Use JPG only when you need smaller file size and do not care about minor quality differences.

Convert Your Images