UNPKG

@somesoap/react-native-image-palette

Version:

Get average color or a colors palette from an image or the image segments

12 lines (10 loc) 275 B
import { Image, type ImageRequireSource } from 'react-native'; export const resolveImageSource = ( source: string | ImageRequireSource ): string => { if (typeof source === 'string') { return source; } else { return Image.resolveAssetSource(source).uri; } };