I have a UIImage (Cocoa Touch). From that, I'm happy to get a CGImage or anything else you'd like that's available. I'd like to write this function:

- (int)getRGBAFromImage:(UIImage *)image atX:(int)xx andY:(int)yy {
  // [...]
  // What do I want to read about to help
  // me fill in this bit, here?
  // [...]

  int result = (red << 24) | (green << 16) | (blue << 8) | alpha;
  return result;
}

Thanks!

link|improve this question

feedback

5 Answers

up vote 67 down vote accepted

FYI, I combined Keremk's answer with my original outline, cleaned-up the typos, generalized it to return an array of colors and got the whole thing to compile. Here is the result:

+ (NSArray*)getRGBAsFromImage:(UIImage*)image atX:(int)xx andY:(int)yy count:(int)count
{
    NSMutableArray *result = [NSMutableArray arrayWithCapacity:count];

    // First get the image into your data buffer
    CGImageRef imageRef = [image CGImage];
    NSUInteger width = CGImageGetWidth(imageRef);
    NSUInteger height = CGImageGetHeight(imageRef);
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
    unsigned char *rawData = (unsigned char*) calloc(height * width * 4, sizeof(unsigned char));
    NSUInteger bytesPerPixel = 4;
    NSUInteger bytesPerRow = bytesPerPixel * width;
    NSUInteger bitsPerComponent = 8;
    CGContextRef context = CGBitmapContextCreate(rawData, width, height,
                    bitsPerComponent, bytesPerRow, colorSpace,
                    kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
    CGColorSpaceRelease(colorSpace);

    CGContextDrawImage(context, CGRectMake(0, 0, width, height), imageRef);
    CGContextRelease(context);

    // Now your rawData contains the image data in the RGBA8888 pixel format.
    int byteIndex = (bytesPerRow * yy) + xx * bytesPerPixel;
    for (int ii = 0 ; ii < count ; ++ii)
    {
        CGFloat red   = (rawData[byteIndex]     * 1.0) / 255.0;
        CGFloat green = (rawData[byteIndex + 1] * 1.0) / 255.0;
        CGFloat blue  = (rawData[byteIndex + 2] * 1.0) / 255.0;
        CGFloat alpha = (rawData[byteIndex + 3] * 1.0) / 255.0;
        byteIndex += 4;

        UIColor *acolor = [UIColor colorWithRed:red green:green blue:blue alpha:alpha];
        [result addObject:acolor];
    }

  free(rawData);

  return result;
}
link|improve this answer
(Stripping out the array thing and getting it to return just 1 color should be easy enough. I wanted to grab a bunch of them, as long as I was creating the buffer.) – Olie Aug 11 '09 at 21:04
thanks! beauty... – John Ballinger Dec 22 '09 at 22:14
1  
What would you need to set 'count' to if you wanted to scan the whole image? – Tom Irving Mar 14 '10 at 20:32
1  
@Olie thanks bunch for this major time saver. I've tweaked it a bit to make it an instance method on a UIImage category and to read into an NSData object. I've also added some methods for sampling a single pixel as well as a selection of colours along a gradient image. github.com/Club15CC/Marshmallows/tree/master/Lib/UIKit – Hari Karam Singh Jan 3 at 19:20
11  
USE CALLOC INSTEAD OF MALLOC!!!! I was using this code to test if certain pixels were transparent and I was getting back bogus information where pixels were meant to be transparent because the memory wasn't cleared first. Using calloc(width*height, 4) instead of malloc did the trick. The rest of the code is great, THANKS! – DonnaLea Feb 1 at 4:18
show 12 more comments
feedback

One way of doing it is to draw the image to a bitmap context that is backed by a given buffer for a given colorspace (in this case it is RGB): (note that this will copy the image data to that buffer, so you do want to cache it instead of doing this operation every time you need to get pixel values)

See below as a sample:

// First get the image into your data buffer
CGImageRef image = [UIImage CGImage];
NSUInteger width = CGImageGetWidth(image);
NSUInteger height = CGImageGetHeight(image);
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
unsigned char *rawData_ = malloc(height * width * 4);
NSUInteger bytesPerPixel = 4;
NSUInteger bytesPerRow = bytesPerPixel_ * width;
NSUInteger bitsPerComponent = 8;
CGContextRef context = CGBitmapContextCreate(rawData, width, height, bitsPerComponent, bytesPerRow, colorSpace, kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
CGColorSpaceRelease(colorSpace);

CGContextDrawImage(context, CGRectMake(0, 0, width, height));
CGContextRelease(context);

// Now your rawData contains the image data in the RGBA8888 pixel format.
int byteIndex = (bytesPerRow * yy) + xx * bytesPerPixel;
red = rawData[byteIndex];
green = rawData[byteIndex + 1];
blue = rawData[byteIndex + 2];
alpha = rawData[byteIndex + 3];
link|improve this answer
I did something similar in my app. To extract an arbitrary pixel, you just draw into a 1x1 bitmap with a known bitmap format, adjusting the origin of the CGBitmapContext appropriately. – Mark Bessey Jan 16 '09 at 5:12
That sounds interestign. Could you post an example as an answer to this question? – Ian1971 Jan 29 '09 at 16:22
feedback

Apple's Technical Q&A QA1509 shows the following simple approach:

CFDataRef CopyImagePixels(CGImageRef inImage)
{
    return CGDataProviderCopyData(CGImageGetDataProvider(inImage));
}

Use CFDataGetBytePtr to get to the actual bytes (and various CGImageGet* methods to understand how to interpret them).

link|improve this answer
1  
This is not a great approach because the pixel format tends to vary a lot per image. There are several things that can change, including 1. the orientation of the image 2. the format of the alpha component and 3. the byte order of RGB. I've personally spent some time trying to decode Apple's docs on how to do this, but I'm not sure it's worth it. If you want it done fast, just keremk's solution. – Tyler Jul 22 '10 at 23:38
feedback

Here is a SO thread where @Matt renders only the desired pixel into a 1x1 context by displacing the image so that the desired pixel aligns with the one pixel in the context.

link|improve this answer
+1 for the pointer to a creative approach. – Olie Apr 16 '11 at 17:27
feedback
NSString * path = [[NSBundle mainBundle] pathForResource:@"filename" ofType:@"jpg"];
UIImage * img = [[UIImage alloc]initWithContentsOfFile:path];
CGImageRef image = [img CGImage];
CFDataRef data = CGDataProviderCopyData(CGImageGetDataProvider(image));
const unsigned char * buffer =  CFDataGetBytePtr(data);
link|improve this answer
I posted this and it worked for me, but going from the buffer back to a UIImage I cant seem to figure out yet, any ideas? – nidal Dec 17 '10 at 16:54
1  
I just found this link and it works amazing: gist.github.com/739132 – nidal Dec 17 '10 at 17:39
feedback

protected by Will Jan 24 '11 at 14:20

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.