gpt4 book ai didi

android - 应用 ColorFilter 但在 PNG 文件中保留透明阴影

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:03:32 31 4
gpt4 key购买 nike

我正在将 ColorFilter 应用于 Drawable 我想知道是否可以更改 drawable 的颜色但保留其中的阴影。

像这样:

enter image description here

如果你应用了类似的东西:

view.getBackground().setColorFilter(new PorterDuffColorFilter(itemView.getResources().getColor(R.color.green_500), PorterDuff.Mode.SRC_IN);

它将应用 ColorFilter 但保留阴影和 alpha 值。

我怎样才能做到这一点?

最佳答案

我认为您需要一个色调转换器。如果是这样,请使用 Understanding the Use of ColorMatrix and ColorMatrixColorFilter to Modify a Drawable's Hue 中提出的 ColorFilterGenerator你只需要做:

view.getBackground().setColorFilter(ColorFilterGenerator.adjustHue(180));

结果看起来像这样(色调旋转 180 度):

enter image description here

注意:这个答案的所有功劳都必须归功于@Richard Lalancette 对我链接的问题的精彩回答

评论更新:

当您需要指定目标颜色时,您可以计算源和目标 HSV 值并使用 ColorFilterGenerator 来移动色调。例如:

// Your source color (The RGB color from your original image is 255,85,78)
float[] hsvSource = new float[3];
Color.RGBToHSV(255, 85, 78, hsvSource);

// The color whose hue you want to achieve (green for example)
float[] hsvTarget = new float[3];
Color.RGBToHSV(0, 200, 18, hsvTarget);

view.getBackground().setColorFilter(ColorFilterGenerator.adjustHue(hsvTarget[0] - hsvSource[0]));

请注意,此方法仅考虑颜色的色调值来改变它。

评论更新:

@Jared Rummler 的精彩回答(Understanding the Use of ColorMatrix and ColorMatrixColorFilter to Modify a Drawable's Hue)将您的可绘制对象作为参数,因此您无需指定源颜色:

view.getBackground().setColorFilter(ColorFilterGenerator.from(view.getBackground()).to(Color.GREEN));

关于android - 应用 ColorFilter 但在 PNG 文件中保留透明阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35080794/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com