将RGBA颜色转换为RGB

时间:2010-01-12 13:31:53

标签: image colors rgb

如何将RGBA颜色元组(例如96,96,96,202)转换为相应的RGB颜色元组?

修改

我想要的是在白色背景上获得与RGBA元组最相似的RGB值。

6 个答案:

答案 0 :(得分:84)

我赞成约翰内斯的答案,因为他是对的。

*有人评论我的原始答案不正确。如果alpha值与正常值相反,它就有效。但是,根据定义,这在大多数情况下都不起作用。因此,我已将下面的公式更新为正常情况。这最终等于@ hkurabko的答案*

然而,更具体的答案是将alpha值合并到基于不透明背景颜色的实际颜色结果中(或者称为“matte”)。

有一种算法(来自this维基百科链接):

  • 将RGBA值标准化,使它们都在0和1之间 - 只需将每个值除以255即可。我们会调用结果Source
  • 也将哑光颜色(黑色,白色等)标准化。我们将调用结果BGColor 注意 - 如果背景颜色也是透明的,那么您必须首先递归该过程(再次选择遮罩)以获得此操作的源RGB。
  • 现在,转换定义为(完整的伪代码!):

    Source => Target = (BGColor + Source) =
    Target.R = ((1 - Source.A) * BGColor.R) + (Source.A * Source.R)
    Target.G = ((1 - Source.A) * BGColor.G) + (Source.A * Source.G)
    Target.B = ((1 - Source.A) * BGColor.B) + (Source.A * Source.B)
    

要获得Target的最终0-255值,您只需将所有标准化值再乘以255,如果任何组合值超过1.0,则确保上限为255(这是过度曝光和有更复杂的算法处理这个涉及整个图像处理等。)。

编辑:在你的问题中,你说你想要一个白色背景 - 在这种情况下,只需将BGColor修复为255,255,255。

答案 1 :(得分:36)

嗯......关于

http://en.wikipedia.org/wiki/Alpha_compositing#Alpha_blending

Andras Zoltan提供的解决方案应略微改为:

Source => Target = (BGColor + Source) =
Target.R = ((1 - Source.A) * BGColor.R) + (Source.A * Source.R)
Target.G = ((1 - Source.A) * BGColor.G) + (Source.A * Source.G)
Target.B = ((1 - Source.A) * BGColor.B) + (Source.A * Source.B)

这个改变版本对我来说很好,因为在prev。使用matte rgb(ff,ff,ff)的版本rgba(0,0,0,0)将更改为rgb(0,0,0)。

答案 2 :(得分:4)

这取决于您使用的色彩空间。如果RGBA处于预乘色空间并且是半透明的,则需要将alpha分割以获得正确的RGB颜色。如果颜色处于非预乘颜色空间,则可以丢弃Alpha通道。

答案 3 :(得分:2)

在我的情况下,我想将RGBA图像转换为RGB,并且以下工作正常:

rgbImage = cv2.cvtColor(npimage, cv2.COLOR_RGBA2RGB)

答案 4 :(得分:1)

这是一个方便的SASS功能,符合Andras'和hkurabko的答案。

@function rgba_blend($fore, $back) {
  $ored: ((1 - alpha($fore)) * red($back) ) + (alpha($fore) * red($fore));
  $ogreen: ((1 - alpha($fore)) * green($back) ) + (alpha($fore) * green($fore));
  $oblue: ((1 - alpha($fore)) * blue($back) ) + (alpha($fore) * blue($fore));
  @return rgb($ored, $ogreen, $oblue);
}

用法:

$my_color: rgba(red, 0.5); // build a color with alpha for below

#a_div {
  background-color: rgba_blend($my_color, white);
}

答案 5 :(得分:1)

以下是一些java代码(适用于Android API 24):

        //int rgb_background = Color.parseColor("#ffffff"); //white background
        //int rgba_color = Color.parseColor("#8a000000"); //textViewColor 

        int defaultTextViewColor = textView.getTextColors().getDefaultColor();

        int argb = defaultTextViewColor;
        int alpha = 0xFF & (argb >> 24);
        int red = 0xFF & (argb >> 16);
        int green = 0xFF & (argb >> 8);
        int blue = 0xFF & (argb >> 0);
        float alphaFloat = (float)alpha / 255;

        String colorStr = rgbaToRGB(255, 255, 255, red, green, blue, alphaFloat);

功能:

protected String rgbaToRGB(int rgb_background_red, int rgb_background_green, int rgb_background_blue,
                        int rgba_color_red, int rgba_color_green, int rgba_color_blue, float alpha) {

    float red = (1 - alpha) * rgb_background_red + alpha * rgba_color_red;
    float green = (1 - alpha) * rgb_background_green + alpha * rgba_color_green;
    float blue = (1 - alpha) * rgb_background_blue + alpha * rgba_color_blue;

    String redStr = Integer.toHexString((int) red);
    String greenStr = Integer.toHexString((int) green);
    String blueStr = Integer.toHexString((int) blue);

    String colorHex = "#" + redStr + greenStr + blueStr;

    //return Color.parseColor(colorHex);
    return colorHex;
}