How-To: Convert UIImage to Greyscale Equivalent
Here’s a simple code snippet for converting a UIImage to a greyscale equivalent:
-(UIImage *) convertToGreyscale:(UIImage *)i {
int kRed = 1;
int kGreen = 2;
int kBlue = 4;
int colors = kGreen;
int m_width = i.size.width;
[...]
