CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.

ImagePalette 0.1.0

ImagePalette 0.1.0

TestsTested
LangLanguage SwiftSwift
License Custom
ReleasedLast Release Mar 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Shaun Harrison.



ImagePalette

Swift/iOS port of Android’s Palette https://developer.android.com/reference/android/support/v7/graphics/Palette.html

Basic Usage

Palette.generateWith(configuration: PaletteConfiguration(image: image)) {
    if let color = $0.darkMutedSwatch?.color {
        self.backgroundColor = color
    }

    if let color = $0.lightVibrantSwatch?.color {
        self.textLabel.textColor = color
    }
}

License

Apache License 2.0 (inherited from the Andorid project) – see the LICENSE file for more information.