PNG vs JPEG vs WebP: The Only Export Rules You Need for Cutouts

The One Rule
If you need transparency, don't export as JPEG. That's the most important thing to remember. The rest is optimization.
Introduction
Choosing between PNG, JPEG, and WebP shouldn't require understanding compression algorithms. You just need to know which format works for your use case.
This guide gives you:
- A simple decision tree
- Copy-paste export presets
- What goes wrong with each format (and how to avoid it)
Quick Decision: Which Format?
| Need | Use | Why |
|---|---|---|
| Transparent background | PNG or WebP | JPEG doesn't support transparency |
| Marketplace listing | JPEG (white bg) | Smaller files, universal support |
| Web graphics/logos | PNG or WebP | Transparency + sharp edges |
| Maximum compression | WebP | 25-34% smaller than JPEG, 26% smaller than PNG |
| Universal compatibility | PNG or JPEG | WebP has good but not 100% support |
Bottom line: Use PNG for transparent cutouts, JPEG for white-background marketplace photos, WebP when file size matters and you can provide fallbacks.
PNG: The Transparent Default
PNG (Portable Network Graphics) uses lossless compression and supports full alpha transparency.
When to Use PNG
- Cutouts with transparent backgrounds
- Logos, icons, graphics
- Images where edge quality matters
- When you'll edit the image again later
PNG Specifications
| Property | Value |
|---|---|
| Compression | Lossless |
| Transparency | Full alpha channel (256 levels) |
| Color depth | Up to 48-bit (16 bits per channel) |
| Typical file size | 2-10× larger than JPEG |
| Browser support | Universal (all browsers since 1990s) |
PNG Strengths
- No quality loss — Export as many times as you want
- Perfect edges — No compression artifacts around cutout edges
- Full transparency — Smooth anti-aliased edges against any background
PNG Weaknesses
- Large file sizes — Lossless = more data
- Overkill for photos — Photos don't need lossless precision
Source: MDN Image Format Guide, W3C PNG Specification
JPEG: When White Backgrounds Are Fine
JPEG uses lossy compression and does not support transparency.
When to Use JPEG
- Marketplace listings with white backgrounds (eBay, Amazon, Etsy)
- Product photos where transparency isn't needed
- When file size matters more than edge precision
- Photographs (gradual tones compress well)
JPEG Specifications
| Property | Value |
|---|---|
| Compression | Lossy (DCT-based) |
| Transparency | Not supported |
| Color depth | 24-bit (8 bits per channel) |
| Typical file size | Smallest for photos |
| Browser support | Universal |
JPEG Strengths
- Small file sizes — Great for web performance
- Photos compress well — Gradual color transitions hide compression
- Universal support — Works everywhere, no fallbacks needed
JPEG Weaknesses
- No transparency — Background becomes white (or another solid color)
- Lossy quality loss — Each save degrades the image
- Edge artifacts — Sharp edges show compression artifacts
JPEG Artifacts Explained
JPEG compression causes visible problems, especially around sharp edges:
| Artifact | Description | Where It Appears |
|---|---|---|
| Blocking | Visible 8×8 pixel grid | Flat color areas |
| Ringing | Halos around sharp edges | Around text, cutout edges |
| Mosquito noise | Shimmering dots near edges | High-contrast boundaries |
| Posterization | Banding in gradients | Smooth color transitions |
These artifacts are why JPEG is poor for cutouts — the sharp edge between subject and background shows ringing and mosquito noise.
Source: Wikipedia: Compression Artifact
WebP: The Best of Both Worlds
WebP supports both lossy and lossless compression with full transparency.
When to Use WebP
- Web graphics where file size matters
- Transparent cutouts for modern websites
- When you control the delivery (can provide fallbacks)
- Animated images (alternative to GIF)
WebP Specifications
| Property | Value |
|---|---|
| Compression | Lossy OR lossless (your choice) |
| Transparency | Full alpha channel (lossy and lossless) |
| Color depth | 24-bit + 8-bit alpha |
| File size vs PNG | 26% smaller (lossless) |
| File size vs JPEG | 25-34% smaller (lossy, same quality) |
| Browser support | Chrome, Safari, Firefox, Edge, Opera |
WebP Strengths
- Transparency + small files — Lossy WebP with alpha is 3× smaller than PNG
- Best compression — Smaller than both JPEG and PNG
- Versatile — One format for photos AND graphics
WebP Weaknesses
- Not universal — Old browsers don't support it (IE11, older Safari)
- Editing software — Some tools don't handle WebP well
- Fallbacks required — Need PNG/JPEG backup for full compatibility
Source: Google WebP Documentation, web.dev WebP Guide
Format Comparison Table
| Feature | PNG | JPEG | WebP |
|---|---|---|---|
| Transparency | ✅ Full alpha | ❌ None | ✅ Full alpha |
| Compression | Lossless | Lossy | Both |
| Edge quality | Excellent | Artifacts | Excellent |
| File size | Large | Small | Smallest |
| Photos | Overkill | Best | Better |
| Graphics/logos | Best | Poor | Great |
| Browser support | Universal | Universal | ~97% global |
| Editing workflow | Best | Degrades | Limited |
Export Presets
Copy these settings for consistent exports:
Preset 1: Marketplace Listing (White Background)
Use for: eBay, Amazon, Etsy, Shopify
| Setting | Value |
|---|---|
| Format | JPEG |
| Quality | 85-90% |
| Background | White (#FFFFFF) |
| Size | 2000 × 2000px |
| Color space | sRGB |
Why JPEG: Marketplaces expect white backgrounds anyway. JPEG gives smaller files with no transparency needed.
Preset 2: Transparent Cutout (Web Use)
Use for: Website graphics, overlays, compositing
| Setting | Value |
|---|---|
| Format | PNG (or WebP with PNG fallback) |
| Compression | Lossless |
| Background | Transparent |
| Size | Original or 2000px max |
| Color space | sRGB |
Why PNG: Universal support, perfect edges, no quality loss.
Preset 3: Transparent Cutout (Optimized)
Use for: Modern websites prioritizing performance
| Setting | Value |
|---|---|
| Format | WebP (lossy with alpha) |
| Quality | 85% |
| Background | Transparent |
| Size | As needed |
| Fallback | PNG |
Why WebP: 3× smaller than PNG with transparency. Use <picture> element for fallback.
Preset 4: Thumbnail/Preview
Use for: Gallery thumbnails, previews, social sharing
| Setting | Value |
|---|---|
| Format | JPEG or WebP |
| Quality | 75-80% |
| Background | White or brand color |
| Size | 400 × 400px or 800 × 800px |
| Color space | sRGB |
Why lower quality: Thumbnails are small — compression artifacts aren't visible.
Common Pitfalls (And Fixes)
Problem 1: "My PNG is huge!"
Cause: PNG uses lossless compression, which preserves all data.
Fixes:
- Use WebP for web (26% smaller, same quality)
- Compress with tools like TinyPNG (reduces colors, still looks good)
- Reduce dimensions if original is oversized
- For solid backgrounds, JPEG is smaller
Problem 2: "Edges look terrible in JPEG"
Cause: JPEG compression creates artifacts around high-contrast edges.
Fixes:
- Use PNG or WebP for cutouts
- If JPEG is required, increase quality to 90%+
- Add slight blur to edges before export (reduces visible artifacts)
- For marketplace listings, the white background masks some issues
Problem 3: "WebP doesn't work for some users"
Cause: ~3% of global users have browsers that don't support WebP.
Fix: Use the HTML <picture> element for automatic fallback:
<picture> <source srcset="image.webp" type="image/webp"> <img src="image.png" alt="Product photo"></picture>Problem 4: "Colors look different after export"
Cause: Color space mismatch (Adobe RGB vs sRGB).
Fix: Always convert to sRGB for web. Most browsers assume sRGB — other color spaces display incorrectly.
Problem 5: "Halos around my cutout edges"
Cause: Original image had colored background that blended with edges.
Fixes:
- Use better background removal with edge refinement
- Check for jagged edges and how to fix them
- Export as PNG to preserve whatever quality you have
The Bottom Line
| Situation | Format | Preset |
|---|---|---|
| Need transparency | PNG or WebP | Preset 2 or 3 |
| Marketplace listing | JPEG | Preset 1 |
| Web performance priority | WebP | Preset 3 |
| Maximum compatibility | PNG | Preset 2 |
| Thumbnails | JPEG or WebP | Preset 4 |
Default recommendation: Export as PNG for transparency, JPEG for white-background marketplace photos. Use WebP when you need smaller files and can provide fallbacks.
FAQ
Frequently Asked Questions
Related Articles:
- Why Your Cutouts Look Jagged (And How to Fix Them)
- Bulk Background Removal for E-Commerce
- eBay & Etsy Listing Image Guidelines
Last Updated: February 4, 2026
Author: SimplyPNG
Tags: #png #jpeg #webp #export #transparency
Sources:
- MDN — Image file type and format guide — Mozilla Developer Network
- W3C — PNG Specification (Third Edition) — W3C official spec
- Google Developers — WebP — WebP format overview
- web.dev — Using WebP images — Google web.dev
- Wikipedia — Compression artifact — Technical reference
Ready to remove backgrounds?
Try SimplyPNG's AI-powered background removal tool for free. No signup required!