Skip to content

Instantly share code, notes, and snippets.

@m1entus
Forked from justinHowlett/gist:4611988
Created March 11, 2016 10:00
Show Gist options
  • Save m1entus/8d56b4d272fb0d13750e to your computer and use it in GitHub Desktop.
Save m1entus/8d56b4d272fb0d13750e to your computer and use it in GitHub Desktop.
Determine if a UIImage is generally dark or generally light
BOOL isDarkImage(UIImage* inputImage){
BOOL isDark = FALSE;
CFDataRef imageData = CGDataProviderCopyData(CGImageGetDataProvider(inputImage.CGImage));
const UInt8 *pixels = CFDataGetBytePtr(imageData);
int darkPixels = 0;
int length = CFDataGetLength(imageData);
int const darkPixelThreshold = (inputImage.size.width*inputImage.size.height)*.45;
for(int i=0; i<length; i+=4)
{
int r = pixels[i];
int g = pixels[i+1];
int b = pixels[i+2];
//luminance calculation gives more weight to r and b for human eyes
float luminance = (0.299*r + 0.587*g + 0.114*b);
if (luminance<150) darkPixels ++;
}
if (darkPixels >= darkPixelThreshold)
isDark = YES;
CFRelease(imageData);
return isDark;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment