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.)?
