Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For those who aren't familiar with the Gimp's "Color to Alpha" feature yet, here is the page on it from the Gimp's documentation: Color to Alpha. It does a really good job, and I wonder much how exactly Gimp does it in terms of color manipulation, whichever color space the colors might be in. Thanks a bunch for any hints.

EDIT 1: Generating transparency information for a pixel based on its similarity to the key color (the one you select in the "Color to Alpha" dialog), like some folk suggested before removing his answer for some reason, would sound like a good insight, but I suppose it's more intricate than that. Let's assume we estimate color similarity in the unit range from 0.0 to 1.0 and we've got a pixel whose color is, for example, 0.4 similar to, say, the color of white (like you would have selected white in the "Color to Alpha" dialog) and therefore the pixel gets an alpha value of 0.6, then how would you alter the pixel's actual color to compensate the loose of brightness/luminosity/saturation when the resulting pixel is displayed against a white background with the alpha of 0.6?

EDIT 2: Actually an update: The sub-question related to the first edit has been answered in How to change the alpha of a pixel without changing the resulting color? but it's probably not the full story because what is going on in the Gimp's source for the "Color to Alpha" feature is not that simple and seems to be based on a specific algorithm rather than a formula.

share|improve this question
Related question: stackoverflow.com/questions/9282714/… – Mark Ransom Feb 16 '12 at 21:00
@MarkRansom I know that the question you posted a link to is related as the one who asked that question was me! :) And even though your formula can achieve the effect of this Gimp's feature, the mystery still holds as the complexity of what I saw in the Gimp's sources is higher than in the formula of yours. – Desmond Hume Feb 17 '12 at 15:41
@MarkRansom Continuing: But your approach appears to be more flexible than Gimp's since, with the solution for a rewritten system of equations, one can "cut" an image out of a background of one color and lay it over a background of another color, and the image would still look the same. So I guess there is no much point in this question anymore, so I'm gonna register this question for deletion if no one doesn't mind. – Desmond Hume Feb 17 '12 at 15:42
I didn't even notice the other one was your question! This one is tougher, because you have an additional unknown - the maximum alpha value capable of retaining the output color. It's an interesting problem, I just haven't had time to work it yet. I wouldn't delete the question. – Mark Ransom Feb 17 '12 at 15:50

2 Answers

up vote 1 down vote accepted

You need to come up with a mechanism for comparing the similarity of colors. There are a variety of color spaces in which you can do this. RGB is often not the best for this sort of thing. But you could use HSV, YCbCr, or some other luma/chroma space. Often a distance in one of those spaces will give you a better answer than a Euclidean distance in RGB. Once you have a distance, you could divide that by the maximum distance to get a percentage. That percentage would be the inverse of the alpha you want to use, as one possibility.

If you want to know how the GIMP does it, you can look at the source. For example, here's one recent code change to that plug-in.

share|improve this answer
Thanks, but I already saw the source and it wasn't sufficiently straightforward and was poorly documented. And what your are writing in the first part of your answer is already addressed in the edition to my question, which in simpler words means that it's not hard to estimate similarity between two colors, rather what to do with the color of a pixel whose alpha has changed from 1.0 to some other value, which, in fact, is not complicated either: stackoverflow.com/questions/9282714/… – Desmond Hume Feb 17 '12 at 15:49

I took a look at the source code, and the meat of it is the colortoalpha function. The parameters *a1 to *a4 are the input/output red, green, blue and alpha, respectively, and c1 to c3 is the color to make alpha.

When you're combining two colors c1 and c2 with a specific alpha a (0 ≤ a ≤ 1), the result is

y = a * c1 + (1-a) * c2

Here we're doing the reverse operation: We know the end result y and the background color c2, and want to figure out c1 and a. Since this is an under-specified equation, there's an infinite amount of solutions. However, the ranges 0 ≤ c1 ≤ 255 and 0 ≤ a ≤ 1 adds bounds to the solution.

The way the Gimp plugin works is that for each pixel it minimizes the alpha value (i.e. maximizes transparency). Conversely, this means that for each resulting pixel that isn't completely transparent (i.e. was not exactly the background color), one of the RGB components is either 0 or 255.

This produces an image that when overlayed on top of the specified color will produce the original image (in absence of rounding errors) and has maximum transparency for each pixel.

It's worth noting that the whole process is done in the RGB color space, but could be performed in others as well, as long as the combining operation is done in the same color space.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.