Skip to content

JesseLawler/react-native-color-thief

 
 

Repository files navigation

react-native-color-thief

A React Native node module that grabs the dominant color or a representative color palette from an image uri.

Credits

An adapted version of Sven Woltmann's fast color-thief-java and Kazuki Ohara's ColorThiefSwift from Lokesh Dhakar's original javascript project color-thief

Getting started

$ npm install git://github.com/EvilGeniusTechnologies/react-native-color-thief.git --save

//TODO $ npm install react-native-color-thief --save

Mostly automatic installation

$ react-native link react-native-color-thief

Manual installation

iOS

Requirements

  • Xcode 10.2
  • Swift 5
  • iOS 9
  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-color-thief and add RNColorThief.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNColorThief.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.RNColorThief.RNColorThiefPackage; to the imports at the top of the file
  • Add new RNColorThiefPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-color-thief'
    project(':react-native-color-thief').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-color-thief/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-color-thief')
    

Usage

Both getColor and getPalette return a Promise.

import RNColorThief from 'react-native-color-thief';

// get array of color objects [{ r, g, b }]
RNColorThief.getPalette(imageUri, colorCount, quality, includeWhite).then((palette) => {
	console.log('palette', palette);
}).catch((error) => {
	console.log('error', error);
});

// get dominant color object { r, g, b }
RNColorThief.getColor(imageUri, quality, includeWhite).then((color) => {
	console.log('color', color);
}).catch((error) => {
	console.log('error', error);
});

Troubleshooting

  1. (iOS) If you aren't currently using swift in your project, you may need to add a dummy.swift file with a bridging header in order to successfully build.

About

A react-native api of ColorThief

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 52.9%
  • Swift 44.9%
  • Other 2.2%