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.
theXMLfor which you get a nulldecodedimage. – Anomie Apr 8 '11 at 19:53