Color algebra: How do I pick a color F will make known color C against known background B at opacity N?
-
Color algebra: Given a color C, how do I pick a color F that will be color C when against background color B at opacity N? How would I do the same thing for a color multiplication? I'm guessing one can start by treating each color as an RGB or CMYK vector, but I'm more than a little fuzzy on exactly what these operations mean and therefore how to invert them to pick F. If context matters in defining the operations, practically I'm concerned with whatever Illustrator CS and Fireworks 8 mean by the terms, but I'm interested in general observations as well.
-
Answer:
Assuming opacity is defined in terms of a linear blending of the two layers, you can just use algebra. For some values of C, B, and N, F might be outside the color space. C = B * (1 - N) + F * N F * N = B * (1 - N) - C F = (B * (1 - N) - C) / N
weston at Ask.Metafilter.Com Visit the source
Other answers
Normalization isn't relevant - it's still possible that F is not in the range of a given color space. Set N = 0.00001, B = black and C = white --> F will be 'brighter' than any color that is normally expressed. Um, no, according to your own formula "F = (B * (1 - N) - C) / N." Then F = (0 - 1) / 10-5 = -10-5, which is actually 'darker' then any color expressed. Unfortunately, your formula is wrong. The actual formula (for Ca 'over' Cb), as per wikipedia would be Co = Caαa + Cb(1-αa) Doing variable substitution, that works out too: F = C*N + B*1 Doing numerical substitution we get F = 1*10-5+ 0*1 Which of course works out too 10-5, a positive number between 0 and 1
delmoi
A day late and a dollar short-- I misunderstood the problem in my first comment. But in fact, the first solution F = (B * (1 - N) - C) / N posted by 0xFCAF at 8:01 PM on February 18 is correct, except that it disregards gamma When arithmetic operations are performed on color values, the values are assumed to be linear wrt brightness, so that if A=2*B, then A emits twice as many photons/second as B). But the numbers given for RGB or CMYK are not linear wrt brightness--they are roughly exponential. And so we assume they are actually exponential, with exponent gamma(γ) (the letter long used in photographic science, and taken over into computer graphics. For most monitors, γ is between 2 & 3. And the formula above turns into the following mess: Let f=(pow(B,γ)*(1-N) - pow(C,γ)) / N (applying gamma) Then if f>0 F= pow( f , 1/γ) (converting from linear back to pixel values) where pow(a,b) is the power function a to the b-th power. Note that f can be negative. This means that F is not just out-of-gamut, it is actually an unrealizable color. As noted above, there is NO 50% transparent color you can put over a pure green source that will result in pure red. The green source may have absolutely no red in it. Since the filter is not luminous itself, where would the red photons come from? And this has nothing to do with the limitations of a CRT or color space. It's fizzicks.
hexatron
Say you want to place a 50% transparent color (F) over bright green (B). You're trying to produce bright red (C). There's no color that will mix with bright green at 50% and get a bright red. You can certainly blend any two colors, but not to arrive at any arbitrary result. Right of course. However you could still store the 'impossible color' in memory, and display a clipped version on the screen (so 'superbright' colors would appear as 100%, and 'superdark' colors would appear as 0%). The impossible color needed in your example could be a color that would always have a maxed out red channel, but use the normal alpha blending function on the green and blue channels. But you would need to write the composing function yourself, and I'm not sure if you can do things like that in Illustrator or Fireworks. Also, I'm still a total moron. Apologies to everyone :P
delmoi
Yes, it turns out I am retarded. Sorry.
delmoi
I think you're misreading my post. I'm not arguing that layer blending is impossible. I'm only arguing that there are limits to the range of colors that are possible to mimic using layer blending. Ugh, crap your right. I somehow managed to read this post wrong today. Ugh.
delmoi
Delmoi, I think you're misreading my post. I'm not arguing that layer blending is impossible. I'm only arguing that there are limits to the range of colors that are possible to mimic using layer blending. As I understand it, the OP's goal is to match colors precisely using layer blending techniques common to Illustrator and Fireworks. He essentially wants to "game" the blending to arrive at a pre-determined color. But it only works under a narrow range of circumstances. Say you want to place a 50% transparent color (F) over bright green (B). You're trying to produce bright red (C). There's no color that will mix with bright green at 50% and get a bright red. You can certainly blend any two colors, but not to arrive at any arbitrary result.
Jeff Howard
(sorry for getting upset, it bugs me when someone will just say something in the beginning of a thread and everyone just goes along with it. I posted a link to the correct formulas in the second comment!)
delmoi
For theoretical applications, the existance of an equation is interesting, but for practical applications it seems less helpful. Humanzee's illustration of negative or impossibly bright colors is a good example. No, it's a fucking mistake.
delmoi
I'm reasonably sure this can't be done. Certainly not universally for any opacity and any background/foreground color combination, though you might be able to make it work for very slight color differences. This is totally absurd. If it were not possible, then there would be no way to do layer opacity in photoshop, for example. Alpha blending is a mathematical formula applied to binary data. The result is always the same, and weston's goal here is to produce the same output as various art programs.
delmoi
Related Q & A:
- How do I make a Vitamin C standard solution?Best solution by answers.yahoo.com
- How do I print green color if I will use a yellow color paper?Best solution by ehow.com
- How can I pick a good web cam?Best solution by forbes.com
- How do I burn a movie that will work in my dvd player?Best solution by Yahoo! Answers
- How do i isolate a in p=a+b+c?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.