How to stop GD2 from washing away the colors upon resizing images?

12,912

Solution 1

I've managed to further test this with Imagick:

Imagick sRGB Test

The left half of the image was processed with Imagick and the sRGB_IEC61966-2-1_no_black_scaling.icc color profile, the right half has no color profile associated and shows exactly the same if processed with Imagick or GD; here is the code I used:

header('Content-type: image/jpeg');

$image = new Imagick('/path/to/DSC07275.jpg');

if (($srgb = file_get_contents('http://www.color.org/sRGB_IEC61966-2-1_no_black_scaling.icc')) !== false)
{
    $image->profileImage('icc', $srgb);
    $image->setImageColorSpace(Imagick::COLORSPACE_SRGB);
}

$image->thumbnailImage(1024, 0);

echo $image;

Here is a comparison of the several sRGB profiles available on the color.org website:

sRGB Comparison

It seems to me that the third profile produces the most vivid results, other than that I have no idea how one would make a definitive choice.


EDIT: Apparently, Imagick comes with a bundled sRGB profile, so you don't need to download the one from the Image Color Consortium website, the following code should handle all scenarios:

header('Content-type: image/jpeg');

$image = new Imagick('/path/to/DSC07275.jpg');
$version = $image->getVersion();
$profile = 'http://www.color.org/sRGB_IEC61966-2-1_no_black_scaling.icc';

if ((is_array($version) === true) && (array_key_exists('versionString', $version) === true))
{
    $version = preg_replace('~ImageMagick ([^-]*).*~', '$1', $version['versionString']);

    if (is_file(sprintf('/usr/share/ImageMagick-%s/config/sRGB.icm', $version)) === true)
    {
        $profile = sprintf('/usr/share/ImageMagick-%s/config/sRGB.icm', $version);
    }
}

if (($srgb = file_get_contents($profile)) !== false)
{
    $image->profileImage('icc', $srgb);
    $image->setImageColorSpace(Imagick::COLORSPACE_SRGB);
}

$image->thumbnailImage(1024, 0);

echo $image;

Solution 2

Your original image has a Adobe RGB (1998) ICC profile attached. I think GD, not knowing about profiles, is interpreting the image data incorrectly. Here's a related PHP bug confirming this.

You would need to prepare the image with the correct profile, most likely sRGB. If you have an application that can do that, try converting it to sRGB and re-uploading.

If you need a permanent server-side solution to the problem, I think you will need an image processing library that can deal with profiles. To be honest, I don't know how ImageMagick deals with these things, but at least it is familiar with the basic concept of colour profiles.

Related: Comparison of sRGB and Adobe RGB

Solution 3

I have a small bit of info to contribute to this thread. I'm a photographer and not a web developer so my technical knowledge is not great, however, I have been dealing with this issue so I hope this post will help someone else down the line.

I use an online photo sales tool that resamples all my images using GD. I was having issues with images looking way funky even when uploaded with proper sRGB conversion and ICC profiling attached, when viewing on my wide-gamut monitor.

What I found the problem to be is that GD strips all metadata and ICC profiles from the original files. Then the browsers, not seeing any profile, are not displaying them correctly. It's slight on a standard-gamut monitor but very obvious on wide-gamut.

If you're having problems with this, you can test my theory by using Firefox and changing a setting in about:config. Change the value of "gfx.color_management.mode" from the default of "2" to "1". This setting will force Firefox to assume any image without an ICC profile is sRGB and will display it as such. Images should then appear as you would expect and identical to Photoshop/Lightroom/etc. Why all browsers do not use this common-sense approach as their default is beyond me.

Unfortunately, my shopping cart is only setup to use PHP GD so I cannot get good results at this time. I would really like to see GD updated to leave ICC profiles attached or to have the option of adding a simple sRGB profile on export.

More info here: http://www.gballard.net/psd/go_live_page_profile/embeddedJPEGprofiles.html#

Share:
12,912
Bilal Ali Akbar
Author by

Bilal Ali Akbar

Updated on June 11, 2022

Comments

  • Bilal Ali Akbar
    Bilal Ali Akbar almost 2 years

    I have developed a photo sharing community site using CodeIgniter 1.7. Photos that are uploaded by members are automatically resized in a number of formats, for which I use the CodeIgniter Image Manipulation class. This class is built into the framework and basically a wrapper around multiple image manipulation libraries, such as GD, GD2, ImageMagick, and NETPBM. On my host, I can only make use of GD2, so that's where this question will be about.

    On to my problem. Here is an example of a resized photo on my site. Note that the original was very large, over 3000px wide:

    http://www.jungledragon.com/image/195/female_impala_close-up.html

    Now, look at that same image, also resized, just a bit larger at Flickr:

    http://www.flickr.com/photos/fledder/3763538865/in/set-72157621744113979

    See the dramatic difference? I'm trying to bridge that huge gap. The first thing I did was to apply a sharpen filter to the images. You can see the result here:

    enter image description here

    Although still not perfect, it at least approaches the sharpness level of the Flickr image. The remaining problem is that the colors are washed away, as if their saturation is decreased. This happens before the sharpening filter already, so it must be in GD2.

    This issue is vitally important to me, but I don't know where to look. I've found some .NET threads talking about chroma sub sampling but I don't know what to do with that information in my setup. I'm looking for any solution that works within the constraints of my setup.

    Update: Hereby the original file, exactly as I uploaded it both to my site and Flickr:

    http://www.jungledragon.com/img/DSC07275.jpg

    Update 2: I'm shocked. In a good way. It took me a lot of pain to install ImageMagick but after switching to it (which was a matter of setting 'imagemagick' as the library to use at the Code Igniter image manipulation class, the result of the test image is as follow:

    enter image description here

    ImageMagick's resizing is doing it exactly as intended. The colors are preserved, and the sharpness is there. Yes, I disabled my custom sharpening routine since it is no longer needed due to ImageMagick. On top of that, the process is a lot faster and less memory hungry too. And here comes another great part: I cannot explain it, but I did absolutely nothing to tell ImageMagick to use a specific color profile, which was suggested by user @Alix. In my testing so far it looks like the color information is respected with or without an embedded profile. The output simply is a smaller version of the input. Is ImageMagick really that smart or am I dreaming?

  • Bilal Ali Akbar
    Bilal Ali Akbar about 13 years
    My idea of the solution would be that users do not have to prep their images in any special way before uploading. Just like Flickr. So preparing the image should not be needed. Nevertheless, you do have a very useful answer. I'm still hoping for a GD2 solution and will keep the question open for a while. If no solution comes in, I will investigate ImageMagick and mark yours as the answer. Thanks!
  • Pekka
    Pekka about 13 years
    @Ferdy you're welcome. I'm afraid I don't think there will be a GD2 solution for this, but I can be wrong. Here's somebody with the same problem: bugs.php.net/bug.php?id=53598
  • Bilal Ali Akbar
    Bilal Ali Akbar about 13 years
    You are likely right. The evidence that this is indeed to do with profiles is building up. I'll take that as a fact now, yet am still in need for a solution :)
  • Bilal Ali Akbar
    Bilal Ali Akbar about 13 years
    I'm now having second thoughts. My test image had the Adobe RGB color profile in it, which really was a failure on my side to properly export it to the web from lightroom. I tested photos from other members and there I do not see the color difference. The question therefore is, how many users do not export using sRGB or no color profile? If that percentage is small, I may be able to live with this. What do you think?
  • Pekka
    Pekka about 13 years
    @Ferdy good question! If the image came from your camera, or from lightroom, with the profile attached, I imagine this is not entirely out of the equation among professional photographers. But I don't know really. Maybe ask over on photography.stackexchange.com?
  • Bilal Ali Akbar
    Bilal Ali Akbar about 13 years
    Good suggestion, I posted a questions asking about stats there: photo.stackexchange.com/questions/11265/…
  • Chad von Nau
    Chad von Nau over 10 years
    I believe that if you use scaleImage() or resizeImage() instead of thumbnailImage(), it will preserve the color profile without having to manually inject it. This is the case with imagemagick on the commandline, I assume it also applies to the Imagick class.
  • Chad von Nau
    Chad von Nau over 10 years
    @AlixAxel I only needed to preserve the profile, not force a different one, but your answer put me on the right path. I left my comment to save other people in the same situation a bit of time.
  • Ricardo Martins
    Ricardo Martins almost 9 years
    Nice work. Just pay attention to avoid using stripImage, that removes color profile and change the color result.