up vote 3 down vote favorite
1
share [g+] share [fb]

I'm having a little dilemma with an iphone project.

I'm getting some JSON data from a webservice. I can deserialize it into a dictionary OK. One of the dictionary values is a binary (a picture), but my JSON library deserializes it as an NSArray of NSDecimalNumbers!

How do I convert this NSArray of NSDecimalNumbers to an NSData object, so that I can successfully generate an image from it, by using [UIImage imageWithData:myNSData]?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

How about this

unsigned char *buffer = (unsigned char*)malloc([arrayOfNumbers count]);
int i=0;
for (NSDecimalNumber *num in arrayOfNumbers) {
    buffer[i++] = [num intValue];
}
NSData *data = [NSData dataWithBytes:buffer length:[arrayOfNumbers count]];
free(buffer);

...or something similar depending the values ranges of the NSDecimalNumbers.

link|improve this answer
You could reduce memory consumption and a buffer copy by using [NSMutableData dataWithLength:[arrayOfNumbers count]]; to allocate the buffer instead of malloc. – Nikolai Ruhe Aug 9 '09 at 9:28
Brilliant, worked like a charm! =] Been a while since I did raw C, so I guess my syntax was off. – Dave Aug 9 '09 at 9:39
feedback

Your Answer

 
or
required, but never shown