How to Make an Image Transparent (Background Removal in 2026)
Transparency means an alpha channel. PNG and WebP carry it; JPEG can't. Here's how to remove a background, save the result correctly, and avoid the "why is my transparent image white" surprise.
"Make this image transparent" almost always means: remove the background so only the subject remains. The "transparency" part is just the technical detail — the actual work is segmenting subject from background, and modern AI does this well.
Two things to get right:
- The segmentation itself — the tool needs to figure out what's foreground and what's background.
- The output format — only certain formats can store transparency. Save the wrong one and the transparent areas snap back to white.
Background removal — how it works in 2026
Modern background removal is AI-based. The model takes the image, decides per-pixel whether each is "foreground" (subject) or "background" (everything else), and outputs an alpha mask. That mask gets applied to the original image as the alpha channel.
Until about 2020, this was a manual job — magic-wand selections in Photoshop, then careful refining around hair and soft edges. The AI models that replaced it (U-Net derivatives, MODNet, MediaPipe segmentation) are 1000× faster and usually more accurate than a hand-tracing.
Remove Background runs MediaPipe in your browser. Drop the image, click Remove, download. No upload, no account, results in 1-3 seconds.
Save it as PNG or WebP — not JPEG
This is the single most common mistake. JPEG does not support transparency. If you save a transparent image as JPEG, the encoder composites the transparent pixels onto a solid background (almost always white) and bakes that in. Open it later and the background is still white — the alpha is gone.
| Format | Supports transparency? | When to use |
|---|---|---|
| PNG | Yes (full alpha) | Default for most graphics with transparency. Universally supported. |
| WebP | Yes (full alpha, lossy or lossless) | Smaller than PNG. Use for web. |
| GIF | Yes (1-bit only) | Use only if you need GIF compatibility. Edge pixels are jagged. |
| JPEG | No | Don't use for transparent images. |
| TIFF | Yes | Use for print / archive. |
| SVG | Yes (vector, alpha implicit) | Only if your image is vector to begin with. |
Dropvert's Remove Background defaults to PNG output. If you want WebP for a smaller file, use the format dropdown — same alpha, ~40% smaller bytes.
After removing the background
Common follow-ups:
- Replace the background with a different color or image. Save the transparent PNG, then composite it over a new background in any image editor — or layer it on top of another image with Add Watermark, which works for image overlays too.
- Make it smaller. A transparent PNG can still be 5+ MB for a high-res photo. Compress Image with WebP output gives the best size-to-quality ratio for transparent images.
- Use it as a stamp or sticker. Now that the background is gone, you can drop the cutout on top of any other image without a visible border.
When background removal doesn't work well
The AI gets confused on:
- Hair against a busy background. Wisps and strands are the hardest case. Most modern models handle them better than older ones, but expect occasional cleanup.
- Glass, ice, water. Translucent objects don't have a clean "fore / back" boundary. The model has to guess where the boundary is, and usually picks the outer edge — which leaves the translucency baked in.
- Subjects that match the background color. A white shirt against a white wall is genuinely ambiguous; even a human would have to guess.
For these cases, the workflow is: run the AI, then manually paint corrections. Dropvert's tool doesn't expose a manual-paint mode for background removal in v1 — for hard cases, GIMP or Photoshop's hair-selection tools are still better.
FAQ
Why does my transparent PNG show a white background when I open it? Some default image viewers (especially on Windows) render transparent areas as white. The image is correct — open it in a browser or in any decent image viewer (IrfanView, GIMP, Photoshop) to confirm. The transparency is also preserved when you embed the image in a webpage or document.
Can I make a JPEG transparent? Not directly. Convert the JPEG to PNG first (Convert JPEG to PNG), then remove the background and save the PNG. The "transparent JPEG" trap above is what bites people who skip the format conversion.
How is this different from a green screen? Green screen removal uses colour-keying against a uniform background — fast and exact, but you have to set up the green screen. AI removal works on any image — slower and slightly less precise on edges, but no setup needed.
Tools mentioned in this guide
Related guides
What Is WebP and Should You Use It?
WebP is a modern image format from Google that produces smaller files than JPEG and PNG with comparable quality. Here's when to use it, when not to, and how to convert.
PNG vs JPEG: Which Image Format Should You Use?
PNG is lossless and supports transparency. JPEG is smaller for photographs. The right choice depends on the image content — here's how to decide.
How to Compress a GIF for Discord, Slack, and Email
GIFs are huge. Here's how to compress one to the size limits Discord (10 MB free / 500 MB Nitro), Slack (1 GB), and email (typically 25 MB) actually allow.