gpt4 book ai didi

react-native - 如何在 native react 中将图像转换为灰度?

转载 作者:行者123 更新时间:2023-12-03 11:43:09 24 4
gpt4 key购买 nike

有没有办法在 react native 中操作图像,使其显示为灰度?我想尝试类似的东西:filter: grayscale(1)
谢谢。

最佳答案

处理先前删除的答案,这可以通过使用图像来实现,而另一个图像绝对位于顶部。

“背面”图像正在使用 tintColor ,如此处定义 https://facebook.github.io/react-native/docs/image.html ,这会将所有不透明的像素变成该颜色。

“正面”图像添加了不透明度,使“背面”颜色向前,为您留下“灰度”图像

前:

<React.Fragment>
<Image source={<something>} />
</React.Fragment>

Standard image

之后(带有背景图片):
<React.Fragment>
<Image source={<something>} style={{ tintColor: 'gray' }} />
<Image source={<something>} style={{ position: 'absolute', opacity: 0.3}} />
</React.Fragment>

enter image description here
'red'tintColor :

enter image description here

关于react-native - 如何在 native react 中将图像转换为灰度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32606221/

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