ToolConvoyToolConvoyv2.6
IMAGE

WebP to PNG — Convert WebP Images to PNG Online in Your Browser

Convert WebP images to PNG format. Lossless output, preserves transparency, batch conversion. Runs entirely in your browser — no uploads, no limits.

● LOCAL · EXIF NEVER UPLOADED0 network requests since page load

Drop your WebP image here

or click to browse (max 50MB)

WebP is the right format for nearly everything on the web, but PNG is the right format for nearly everything else. PNG is lossless — every pixel is stored with mathematical precision — and it supports an alpha channel for full or partial transparency. WebP also supports lossless and alpha modes, but the PNG format has three decades of universal adoption that WebP has not yet matched. When a workflow requires PNG — a graphic design tool that does not import WebP, a print shop that accepts only PNG, a version control system where pixel-diffable PNGs matter — converting WebP to PNG is the necessary first step.

The conversion itself is a decode followed by a lossless re-encode. The WebP decoder reconstructs the bitmap, and the PNG encoder compresses it with DEFLATE. The output PNG is mathematically identical to the decoded WebP, but — and this is the nuance that matters — the decoded WebP is only identical to the original pixels if the WebP was lossless to begin with. A lossy WebP decoded and re-saved as PNG looks clean (no PNG compression artefacts) but carries the lossy WebP artefacts into the PNG. The result is a PNG that is larger than the WebP and visually identical to the WebP, which is usually not the outcome anyone wants. The right time to use this conversion is when the source is a lossless WebP, or when the destination’s format requirement (must be PNG) outweighs the file-size cost.

For a final hand-off: if the destination is a website, serve WebP directly to modern browsers with a PNG fallback via the <picture> element. If the PNG output is too large for the intended use, run it through the Image Compress tool to apply lossy PNG compression (pngquant-style palette reduction) that can halve the file size for photographic content. If the source is an animated WebP and you need a still frame, the converter extracts the first frame automatically.

How to use

  1. Drop your WebP files

    Drag one or more .webp images into the drop zone. Both lossy and lossless WebP are decoded to a full-colour bitmap. The PNG encoder then compresses the bitmap with DEFLATE for lossless output.

  2. Choose PNG colour depth

    Default is 24-bit RGB (no alpha, opaque only). Switch to 32-bit RGBA if the source WebP carries a transparency channel that must survive the conversion. 8-bit indexed PNG is available for images with a limited colour palette.

  3. Download the PNGs

    Each file converts in under a second. Downloads are individual by default; switch to zip mode for large batches. The output PNG preserves whatever metadata (EXIF, XMP, ICC profile) was in the source WebP.

Frequently asked

Does WebP-to-PNG produce a lossless result?

The PNG encoding step is lossless — it uses DEFLATE compression that preserves every pixel exactly. However, if the source is a lossy WebP, the decoded pixels already differ from the original image that was saved as WebP. The PNG faithfully captures the WebP's decoded pixels, not the pre-WebP original.

Will the PNG file be larger than the WebP source?

Almost always yes, and significantly so. WebP is a compressed format designed for the web — a lossy WebP is typically 3-5x smaller than an equivalent PNG, and a lossless WebP is 26% smaller. Converting to PNG trades file size for universal compatibility.

What happens to the alpha channel during conversion?

If the source WebP includes transparency (an alpha channel), and you select 32-bit RGBA output, the alpha is preserved in the PNG. Partial transparency (anti-aliased edges, soft shadows) is also preserved. If you select RGB-only output, transparent areas are composited against white.

Can I convert animated WebP to APNG?

No — the converter extracts the first frame as a still PNG. Animated WebP sequences and APNG are separate animation formats. For animated content, keep the WebP or use a dedicated animation converter.

Limitations

  • File size increases dramaticallyA lossy WebP of 150 KB can become a PNG of 1.5 MB or more. PNG's lossless compression excels at graphics with flat colours and sharp edges, not at photographs with gradients where JPEG and WebP shine.
  • No gamma or colour profile correctionICC colour profiles from the WebP are carried into the PNG's iCCP chunk, but no colour space conversion is performed. If the WebP was in a wide-gamut profile and the destination expects sRGB, the colours may shift.
  • No animation to APNG conversionAnimated WebP files are de-animated to a single still frame. Frame timing, loop count, and playback settings are not preserved.

Platform notes

macOS
Preview.app opens WebP but cannot natively export as PNG with alpha. Use the browser tool for a direct WebP-to-PNG conversion without intermediate steps.
Linux
ImageMagick (`convert input.webp output.png`) handles the conversion but requires the webp delegate library. The browser tool is the right pick when a CLI is not available.
Web
All processing runs client-side using the browser's native WebP decoder and a canvas-based PNG encoder. No upload, instant results.

Related tools