Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting images encoded in base64 from a .NET program running on a web server, using XML parameters.

I am able to download the encoded image data, but some of them get decoded to null. I am using the base64 classes from here.

I verified that the data was null by printing the contents of the variable to the console.

The code:

NSString *theXML = [[NSString alloc] initWithData:decode encoding:NSUTF8StringEncoding];
NSData *decodedimage = [Base64 decode:theXML];
NSLog(@">>>>>>>>>>>>>>>>>> %@",decodedimage);
UIImage *image = [UIImage imageWithData:decodedimage];

I get theXML every time but for some of the images I get (null) for decodedimage.

share|improve this question
Need a little more context. Post your code and console error output. – Jordan Apr 8 '11 at 19:15
1  
It would probably help to see a value of theXML for which you get a null decodedimage. – Anomie Apr 8 '11 at 19:53

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.