如何在 React Native 中更改透明背景图像文本的颜色?

How to change the color of a transparent background image's text in react native?

我有这张图片

quran image

我希望它是这样的

quran image dark

在 React Native 中可以做到吗

在 View 中封装并添加背景颜色样式。

<View style={styles.imageContainer}>
{...image here}
</View>

const styles = StyleSheet.create({
    imageContainer: {
        backgroundColor: 'blue'
    }
})

我想出了一个方法来处理 png 图像,你所要做的就是

<Image style={{ tintColor: "any color",}} />