ColorArt
ColorArt copied to clipboard
iTunes 11-style color matching code for iOS
Implicit conversion from enumeration type 'enum CGImageAlphaInfo' to different enumeration type 'CGBitmapInfo' (aka 'enum CGBitmapInfo')
In order to avoid method name clash please add class prefix to method names - (SLColorArt*) sg_colorArt; - (SLColorArt*) sg_colorArt:(CGSize)scale; etc
This image http://thisamericanlife.org/sites/all/themes/thislife/images/logo-square-1400.jpg has a white background. The original Mac ColorArt class detects it correctly, however, the background color comes out grey from the iOS version.
please, make changes to UIImage+Scale.m: from UIGraphicsBeginImageContext(newSize); to UIGraphicsBeginImageContextWithOptions(newSize, YES, 0.0);
I noticed that when running both this version of the project and the Mac OS X version, and selecting the exact same image file, that the chosen colors are not...