Poliwhirl

Additional

Language
Kotlin
Version
1.0.4 (Feb 13, 2018)
Created
Oct 27, 2017
Updated
Feb 13, 2018 (Retired)
Owner
Anton Potapov (FlashLight13)
Contributor
Anton Potapov (FlashLight13)
1
Activity
Badge
Generate
Download
Source code

Poliwhirl

Description

This is a small image processing library done to find good color for icon background. It uses CIEDE2000 to determine what colors can be processed as the same.

Result example

Here goes the table with the generated colors.

Input Result

Usage

Gradle:

compile 'com.antonpotapov:poliwhirl:$version'

Maven:
<dependency>
    <groupId>com.antonpotapov</groupId>
    <artifactId>poliwhirl</artifactId>
    <version>$version</version>
</dependency>
In code:

You need to use only one class: Poliwhirl(). It's instance is reusable. So, you may create in only once. Also, there is no any long-time operations in instance creation, so you can create it each time you need it.

Async way
Poliwhirl().generateAsync(bitmap, object : Poliwhirl.Callback {
    override fun foundColor(color: Int) {
      // do whatever you need with the color
    }
})
Sync way

Poliwhirl().generate(bitmap);

Customizable way

Here you can provide an executor to poliwhirl. Poliwirl will try to execute it's calculation in parallel in this case. Also you can provide something like current-thread executor (thats how sync way is done) or whatever you need.

Poliwhirl().generateOnExecutor(bitmap, object : Poliwhirl.Callback {
    override fun foundColor(color: Int) {
        pictureBackground.setBackgroundColor(color)
    }
}, Executors.newSingleThreadExecutor())