How to convert a RGBA color tuple, example (96, 96, 96, 202), to corresponding RGB color tuple?
Edit:
What I want is to get a RGB value which is most similar to the RGBA tuple visually on white background.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’ve upvoted Johannes’ answer because he’s right about that.
* A few comments have been raised that my original answer was not correct. It worked if alpha values were inverted from the normal. By definition, however, this won’t work in most cases. I’ve therefore updated the formula below to be correct for the normal case. This ends up being equal to @hkurabko’s answer below *
A more specific answer, however, incorporates the alpha value into the actual colour result based on an opaque background colour (or ‘matte’ as it’s referred to).
There is an algorithm for this (from this wikipedia link):
Source.BGColorNote – if the background colour is also transparent, then you’ll have to recurse the process for that first (again, choosing a matte) to get the source RGB for this operation.Now, the conversion is defined as (in complete psuedo code here!):
To get the final 0-255 values for
Targetyou simply multiply all the normalised values back up by 255, making sure you cap at 255 if any of the combined values exceed 1.0 (this is over-exposure and there are more complex algorithms dealing with this that involve whole-image processing etc.).EDIT: In your question you said you want a white background – in that case just fix BGColor to 255,255,255.