React native:混合混合模式可能吗?

时间:2016-11-11 15:50:24

标签: react-native

是否可以在RN中使用混合混合模式?

style={{
  mixBlendMode: 'overlay'
}}

无效的props.style键

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:1)

如果您需要混合图像,可以通过以下方式尝试我的react-native-image-filter-kit

import { Image } from 'react-native'
import { OverlayBlend } from 'react-native-image-filter-kit'

const imageStyle = { width: 320, height: 320 }

const tahoe = (
  <Image
    style={imageStyle}
    source={{ uri: 'https://una.im/CSSgram/img/tahoe.jpg' }}
    resizeMode={'contain'}
  />
)

const cacti = (
  <Image
    style={imageStyle}
    source={{ uri: 'https://una.im/CSSgram/img/cacti.jpg' }}
    resizeMode={'contain'}
  />
)

const blended = (
  <OverlayBlend
    dstImage={tahoe}
    srcImage={cacti}
  />
)

result