Popularity
4.3
Growing
Activity
0.0
Stable
263
17
26

Code Quality Rank: L3
Programming language: Swift
License: MIT License
Tags: Images    

SwiftColorArt alternatives and similar libraries

Based on the "Images" category.
Alternatively, view SwiftColorArt alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of SwiftColorArt or a related project?

Add another 'Images' Library

README

SwiftColorArt

SwiftColorArt is a demo application that includes Swift files with all classes and extension necessary to create a font color schema matching to an image (similiar to what iTunes does).

This work is inspired by a lot of previous work from other people. It is also my first Swift project. You can read the whole story here

Usage is pretty simple and always yields a result (fallback colors are included)

For now please use the convinience init method until the class is stable.

var swiftColorArt:SwiftColorArt = SwiftColorArt(inputImage: image)

self.view.backgroundColor = swiftColorArt.backgroundColor!

self.primaryColorLabel.textColor    = swiftColorArt.primaryColor!
self.secondaryColorLabel.textColor  = swiftColorArt.secondaryColor!
self.detailColorLabel.textColor     = swiftColorArt.detailColor!

Screenshot

Please note that this is a work in progress performance and memory footprint need major improments and additional features will also be implemented in the future. Feel free to post issues or create pull requests.