Skip to content

Free tools · Images

WebP to PNG

Converted on your device. Nothing uploaded.

Free · no sign-up · JPG, PNG and WebP are processed on your device · other formats are uploaded, deleted after 24 hours.

How to webp to png

  1. Drop the WebP.
  2. Nothing to choose.
  3. Press Convert and download the PNG.

What happens to your file

Your browser decodes the WebP and writes PNG — a lossless format — so the pixels are exactly what the WebP held, transparency included.

PNG is larger: it stores the same pixels without WebP’s compression. That is the trade for opening anywhere, including older tools that do not know WebP.

Questions

Why did a website give me a WebP?

Because it is smaller to serve. Right-clicking "save image" keeps the served format, which many editors and upload forms still refuse.

Animated WebP?

Only the first frame is converted; PNG has no animation.

Do this in code

curl -X POST https://api.fylane.dev/v1/jobs \
  -H "Authorization: Bearer $FYLANE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "file_id": "<file id>",
    "operation": "image.convert",
    "options": {
      "format": "png"
    }
  }'

The same operation, image.convert — Re-encode to WebP, JPEG, PNG or AVIF at your quality. Upload first with the quickstart; every option is on the operations page. 500 free credits a month, then $5 per thousand.