Common image format problems, and how to actually fix them

White boxes where transparency should be, files that won't open, uploads that get rejected. Most of these have the same root cause.

Published Updated 7 min read

The classic transparency-lost problem — saving a PNG as JPG fills the transparent areas with a solid colour.

Most format problems people run into aren't mysterious — they're the same handful of causes recurring in different contexts. This is a rundown of the ones we see most often, and the specific fix for each.

"My transparent logo has a white box behind it"

This happens when a PNG (or WEBP) with an alpha channel is converted to JPG, which has no transparency support at all. Whatever converted it had to fill the transparent pixels with something, and it defaulted to white. The fix is either to keep the file as PNG or WEBP wherever it's used, or, if JPG is genuinely required, convert deliberately with a background colour chosen to match the destination — our PNG to JPG tool lets you set that colour explicitly instead of guessing.

"The upload form rejects my file"

  • Wrong format accepted — some forms only take JPG or PNG; convert from WEBP, HEIC, BMP or TIFF to whichever is listed.
  • File too large in bytes — resize dimensions down first, then compress; check the exact limit stated, not a guess.
  • Wrong pixel dimensions — many document and photo forms enforce exact width/height or aspect ratio, not just a file size cap.
  • Corrupted or partial file — re-export from the original source rather than re-uploading the same broken file.

"My iPhone photos won't open anywhere"

Recent iPhones save photos as HEIC by default, a format most non-Apple software and many websites don't support. The fix is to convert to JPG once, on export or in the tool of your choice — HEIC is a fine format for storage on the device, but a poor one for sharing anywhere outside the Apple ecosystem.

"The image looks worse after I resaved it"

If the file is a JPG or WEBP, this is generation loss — every re-save of a lossy format discards a little more information, and it's cumulative and permanent. Keep an untouched original (ideally lossless, like PNG or the camera's raw file) and always export fresh copies from that original rather than editing the same lossy file repeatedly.

"Colours look different after converting"

This is usually an embedded colour profile (like Adobe RGB) being interpreted differently, or being stripped, during conversion. It's most noticeable on saturated reds and greens. If exact colour accuracy matters — brand colours, product photography — check that the tool preserves or correctly converts the colour profile, and verify the result against the original on a colour-calibrated screen rather than assuming any shift is a bug.

Tools for this