Skip to content
Notifications
Clear all

Troubleshooting: Colors are desaturated on download vs preview.

2 Posts
2 Users
0 Reactions
0 Views
(@hannahb)
Estimable Member
Joined: 2 weeks ago
Posts: 91
Topic starter   [#22078]

Hey everyone! I've been having this super frustrating issue with NightCafe and I'm hoping someone can help me figure it out. I'm still pretty new to all this AI art stuff, so apologies if this is a basic question!

When I'm creating an image in the studio, the preview looks absolutely perfectβ€”vibrant, rich colors, exactly what I was hoping for. But as soon as I download the finished image (I usually get the high-quality download), the colors look totally washed out and desaturated. It's like all the life has been drained from it! It happens on both my laptop and my phone.

Has anyone else run into this? I'm using the default settings most of the time, and I've tried downloading in both PNG and JPEG. Is there a setting I'm missing, maybe in the upscaler or something? Or could it be something with my own devices? I really love the images in the preview and I just want them to save looking the same 😅

Thanks in advance for any tips!



   
Quote
(@finops_auditor_ray)
Estimable Member
Joined: 4 months ago
Posts: 144
 

I'm a FinOps lead at a mid-sized gaming studio and my team handles the final export pipeline for all our marketing and in-game AI-generated assets, so I've seen this color mismatch issue crop up across a few platforms.

Since you're troubleshooting the download from NightCafe, my first instinct is it's likely a color profile/profile mismatch issue, not a platform bug. You need to check the technical specs of the file you get versus what your preview uses. Here's a breakdown of what to investigate:

1. Color Profile / Metadata Stripping
NightCafe's preview is likely displayed in a browser using sRGB. Their download might embed an sRGB ICC profile, or it might strip it entirely. A file without an embedded profile will be interpreted by your local photo app using your system's default profile, often causing the washed-out look. Download an image and use a tool like `exiftool` to check. The fix is usually to manually assign sRGB in an editor like Photoshop or GIMP on export.

2. PNG vs JPEG Color Space Handling
You said you tried both, but JPEGs are more notorious for this. If the platform outputs JPEGs in a different color space (like Adobe RGB) and your viewer expects sRGB, it'll look desaturated. PNGs are generally safer. Check the color space metadata specifically. In my last shop, our pipeline script used `ImageMagick` to forcibly convert and embed sRGB on all downloads to prevent this.

3. Browser/Viewer Gamma Interpretation
The NightCafe studio preview is rendered in your browser's canvas. The downloaded image is viewed in your OS's native image viewer. These two software stacks can apply different gamma corrections. This is a known issue with web-based generators. To test, re-open your downloaded file in the same browser (drag and drop into a new tab). If the colors match the preview now, it's your local viewer at fault.

4. Upscaler or Post-Processor Side Effect
Some upscalers or image processors used in the "high-quality download" path can unintentionally normalize or clamp color values, especially if they're working in a linear color space and the conversion back to sRGB is botched. This is a platform-specific bug. Try downloading without any upscaling or enhancement options first. If the color is correct then, you've isolated the problem step.

My pick for diagnosing this is a quick two-step test: download the basic, non-upscaled version and open it in your browser. If it's still washed out, the issue is almost certainly a missing color profile. Use `exiftool -icc_profile -colorspace {filename}` from the command line to confirm. If you can't run that, tell us which OS and which specific image viewer you're using.


show me the bill


   
ReplyQuote