In objective c,
I need to convert a UIImage into something that matches the following type:
const unsigned char myImg[6300] = { 0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,
0x0,0xff,0xff,0x0,0x0,0xff,0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0x0,0x0,0xff,0xff, etc etc etc }
I've read the NSData docs, and tried:
self.animalImage = [UIImage imageNamed:@"animal.png"];
self.animalData = UIImagePNGRepresentation(self.animalImage);
NSUInteger size = [self.animalData length] / sizeof(unsigned char);
unsigned char* array = (unsigned char*) [self.animalData bytes];
But the result is garbage or nil, I need it to match the above format exactly. Any thoughts? Thanks in advance for any tips!
You say your result is "garbage or nil" but the documentation says it will either return the byte data of the image or nil if it encounters an error.
https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIKitFunctionReference/#//apple_ref/c/func/UIImagePNGRepresentation
I don't see how it could generate different results with the same image, so I'm going to guess you tried it with some different images, perhaps some of them not actually PNG images. The ones that it could not parse properly returned
nil
and the "garbage" you describe is probably actually the data you want.Once you have your
NSData*
instance you can useenumerateByteRangesUsingBlock
to build your new array that you need.https://developer.apple.com/library/ios/documentation/Cocoa/Reference/Foundation/Classes/NSData_Class/