Skip to content

Why your photo looks different on every screen

6 min read Formats Updated July 2026

You edit a photo until the colours are right, export it, and it looks wrong — flat and washed out on one screen, garish on another. Nothing is broken. What has happened is that the numbers in your file were interpreted against a different definition of what those numbers mean.

Colour management is genuinely confusing, but the practical part is small, and understanding it fixes an entire category of frustrating problems.

The numbers do not mean anything on their own

A pixel stored as (255, 0, 0) is 'as much red as this format can express'. It is not any particular red. How red it actually looks depends entirely on the display, and displays vary enormously in how saturated a red they can physically produce.

A colour space is the missing definition: it maps those numbers onto actual, measurable colours. Give the same file two different colour space definitions and it will display as two different images, without a single pixel value changing.

This is the whole problem in one sentence. Colour management exists to make sure that the definition travels with the file, so that everything downstream interprets the numbers the same way.

The three colour spaces you will meet

sRGB is the oldest and by far the most important. It dates to 1996, describes a relatively modest range of colours, and is the assumed default across the entire web. Anything that does not specify a colour space is treated as sRGB by essentially every browser and viewer.

Display P3 is Apple's adopted wide-gamut space, and it is now what most recent phones, tablets and laptops actually display. It covers roughly 25% more colours than sRGB, with noticeably more saturated reds and greens. Photos taken on a modern iPhone are captured in P3.

Adobe RGB is older and aimed at print, with a wider range of cyans and greens than sRGB but less reach in the reds than P3. It remains common in professional print workflows and is rarely the right choice for anything web-facing.

There is also ProPhoto RGB, which is enormous and used as an editing space in raw workflows. It should never leave your editor — exporting ProPhoto to the web produces the most dramatic version of the washed-out problem described below.

Why images look washed out

This is the most common symptom and it has one dominant cause: an image in a wide-gamut space displayed by something that assumes sRGB.

Say a photo is in Display P3 and its most saturated red is stored as (255, 0, 0). Viewed correctly, that is P3's red, which is very saturated. Viewed by software that assumes sRGB, the same numbers are interpreted as sRGB's red, which is less saturated. Every colour in the image is mapped to something duller than intended, and the whole photo looks flat and lifeless.

The reverse produces the opposite: an sRGB image interpreted as P3 renders every colour more saturated than intended. Skin tones go orange and reds glow.

Both are interpretation errors, not damage. The pixel values are fine; the wrong definition was applied.

Embedded profiles, and what strips them

The mechanism that prevents all this is the ICC profile — a block of metadata embedded in the file that states which colour space the numbers belong to. Software that reads it can convert correctly for whatever display is attached.

The problem is that profiles get lost. Some export settings omit them to save a few kilobytes. Some aggressive optimisation tools strip all metadata, profiles included. Some platforms discard them during their own recompression. Screenshots may or may not carry the profile of the content they captured.

And once the profile is gone, a wide-gamut image is indistinguishable from an sRGB image with unusual pixel values. Nothing downstream can recover the intent, which is why an image can look correct on your machine and wrong everywhere else — your editor remembered the colour space out of band, and the file did not carry it.

This is also the one case where blanket metadata stripping has a real cost. Removing EXIF and GPS from a shared image is good practice; removing the ICC profile along with it can visibly change how the image looks.

What to actually do

The rules are short:

  • Export to sRGB for anything going on the web, into a document, or to someone whose setup you do not know. It is the universal default and cannot be misinterpreted.
  • Always embed the profile. It is a couple of kilobytes and it removes the entire class of problem.
  • Convert, do not assign. Converting remaps the pixel values so the colours stay visually the same in the new space; assigning changes the label and leaves the values alone, which changes the appearance. Almost always you want convert.
  • Edit in a wide space if you like, but export narrow. Keeping P3 or ProPhoto in your editor preserves headroom; sending it out invites misinterpretation.
  • Use Display P3 deliberately, not accidentally — for a photo gallery where the extra saturation matters and you can serve sRGB as a fallback.
  • If an image looks flat everywhere but your editor, suspect a missing or wrong profile before you suspect the image.

Frequently asked questions

Why does my photo look washed out after exporting?
Almost always because it is in a wide-gamut space like Display P3 or Adobe RGB and is being displayed by something that assumes sRGB. Export to sRGB with the profile embedded and it will look the same everywhere.
Should I use sRGB or Display P3 for the web?
sRGB unless you have a specific reason and a fallback. It is the assumed default everywhere, so it cannot be misinterpreted. Display P3 is worth it for photo galleries where the extra saturation is the point.
What is an ICC profile?
A block of metadata embedded in an image that states which colour space its pixel values belong to, so software can convert them correctly for whatever display is attached. Without it, viewers guess — and they guess sRGB.
Does removing metadata affect image colour?
It can. If a tool strips all metadata including the ICC profile, a wide-gamut image loses its definition and will be interpreted as sRGB, which usually makes it look flat. Tools aimed at privacy should remove EXIF and GPS while keeping the colour profile.

Tools mentioned in this guide

Keep reading