I just want to get average color of an image and paint my background with that color. But because of I'm using expo in react native I can not find any solution for this.
What should I do to tackle this?
I just want to get average color of an image and paint my background with that color. But because of I'm using expo in react native I can not find any solution for this.
What should I do to tackle this?
Copyright © 2021 Jogjafile Inc.
It looks like no way to achieve that using
expo, you have one of these option ethers dropexpoand move toreact nativeor use your backend to get the average color.If You're using
React-Nativecan get the base64 from the image and use react-native-image-colors to get the average color from it like this example:you can check the full documentation on github from here.