This library provides a react hook which integrates with node-vibrant
.
Usage
const { colors, done } = useVibrant(imageUrl);
Colors outputs the vibrant palette
object of several swatches
. Each one represents a different color found in the image.
For more information on this, visit their docs.
It also outputs a done
value, indicating whether or not the processing is complete. You may wish to use this to prevent components from rendering until you have successfully extracted colors from the images.
Example
import React from 'react';import useVibrant from 'useVibrant'; imageUrl const colors done = ; return done && <div = /> ;