Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The following code translates a jpg into a string of chars.

 CGImageRef imageRef = example.CGImage;
    NSData *data     = (NSData *) CGDataProviderCopyData(CGImageGetDataProvider(imageRef));
    char *pixels     = (char *)[data bytes];

a small piece of the output is:

"GJYˇKO[ˇFJSˇILQˇKNSˇKKSˇOOYˇMMYˇNNVˇOOWˇOOWˇNNVˇLLTˇKKSˇMMUˇOOWˇJMT"

I guess the 3 Symbols together consist of the infomation of one pixel, right?
And if this is true, how can i interpret this Symbols (colors e.g.)?

share|improve this question

2 Answers

up vote 3 down vote accepted

This will all depend on the color space of your image. If there is an alpha channel 4 chars will be one pixel and without it will be 3 chars. If it is RGBA then G is your R, J is your G , Y is your B and ˇ is your A. And if it is ARGB it G is your A etc.. Also when you convert your pixels to a char * remember to keep track of the length because any RGBA value of 0 will cause a null termination.

share|improve this answer
thank you! do you maybe know how i can get the info about the color layout? – Malte Onken Jun 20 '11 at 13:07
CGColorGetColorSpace(imageRef) developer.apple.com/library/mac/#documentation/GraphicsImaging/… – Joe Jun 20 '11 at 13:12
I would also ask yourself why you are converting the bytes to a char*, if it is for fun or some kind of cool feature have at it, if it is performance or storage you may want to reconsider. :) – Joe Jun 20 '11 at 13:15
true! thanks joe – Malte Onken Jun 20 '11 at 13:23

You can't print out a bit map like that. As @Joe says the char's are the individual color components but any zero will terminate the string and there are many other problems trying to print the bytes from an NSData like that.

Assuming the RGBA color space, the way I'd approach it is like this;

struct {
    char red;
    char green;
    char blue;
    char alpha;
} color;
color *bitmap = (color *)[data bytes];
for(int i = 0;i < [data length] / sizeof(color);i++) {
    NSLog(@"%d, %d, %d, %d", colors[i].red, colors[i].green, colors[i].blue, colors[i].alpha);
}

If your image is not in the RGBA color space then you will need to adjust the color struct to match it.

Also, this code was not compiled but typed from my mind to this post. No promise is made that it won't reformat your hard drive. Please think before copy and paste.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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