Decode Base-64 encoded PNG in an NSString

19,084

Solution 1

NSData Base64 library files will help you.

#import "NSData+Base64.h"

//Data from your string is decoded & converted to UIImage
UIImage *image = [UIImage imageWithData:[NSData
dataFromBase64String:strData]];

Hope it helps

Swift 3 Version

It's pretty much the same

//Create your NSData object
let data = NSData(base64Encoded: "yourStringData", options: NSData.Base64DecodingOptions.ignoreUnknownCharacters)

//And then just create a new image based on the data object
let image = UIImage(data: data as! Data)

Swift 2.3 Version

//Create your NSData object
let data = NSData(base64EncodedString: "yourStringData", options: .IgnoreUnknownCharacters)

//And then just create a new image based on the data object
let image = UIImage(data: data!)

Solution 2

You can decode a Base64 encoded string to NSData:

-(NSData *)dataFromBase64EncodedString:(NSString *)string{
    if (string.length > 0) {

        //the iPhone has base 64 decoding built in but not obviously. The trick is to
        //create a data url that's base 64 encoded and ask an NSData to load it.
        NSString *data64URLString = [NSString stringWithFormat:@"data:;base64,%@", string];
        NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:data64URLString]];
        return data;
    }
    return nil;
}

Example use of above method to get an image from the Base64 string:

-(void)imageFromBase64EncodedString{

    NSString *string = @"";  // replace with encocded string
    NSData *imageData = [self dataFromBase64EncodedString:string];
    UIImage *myImage = [UIImage imageWithData:imageData];

    // do something with image
}

Solution 3

//retrieve your string 

NSString *string64 = //... some string base 64 encoded

//convert your string to data

NSData *data = [[NSData alloc] initWithBase64EncodedString:string64 options:NSDataBase64DecodingIgnoreUnknownCharacters];

//initiate image from data

UIImage *captcha_image = [[UIImage alloc] initWithData:data];

Solution 4

 NSString *base64String=@"............";
    NSData* data = [[NSData alloc] initWithBase64EncodedString:base64String options:0];
            UIImage* img = [UIImage imageWithData:data];

//imageview  is the refrence outlet of image view
            self.imageview.image=img;
Share:
19,084
HurkNburkS
Author by

HurkNburkS

DO WORK!

Updated on June 22, 2022

Comments

  • HurkNburkS
    HurkNburkS almost 2 years

    I have some NSData which is Base-64 encoded and I would like to decode it, I have seen an example that looks like this

    NSData* myPNGData = [xmlString dataUsingEncoding:NSUTF8StringEncoding];
    
    [Base64 initialize];
    NSData *data = [Base64 decode:img];
    cell.image.image = [UIImage imageWithData:myPNGData];
    

    However this gives me a load of errors, I would like to know what to do in order to get this to work. Is there some type of file I need to import into my project or do I have to include a framework?

    These are the errors I get

    Use of undeclared identifier 'Base64'
    Use of undeclared identifier 'Base64'
    Use of undeclared identifier 'cell'
    

    I have looked everywhere and cannot figure out what is the proper thing to do.

  • HurkNburkS
    HurkNburkS almost 11 years
    awesome going to try now :)
  • HurkNburkS
    HurkNburkS almost 11 years
    i am getting an error when I try and use NSData*data .. etc which says this No known class method for selector 'dataWithBase64EncodedString:'
  • HurkNburkS
    HurkNburkS almost 11 years
    I think i pretty much have it.. one question how would i get this UIImage *image = [UIImage imageWithData:data]; into a UIWebView?
  • HurkNburkS
    HurkNburkS almost 11 years
    quick question how would I get myImage into a UIWebView?
  • bobnoble
    bobnoble almost 11 years
    You could save the resulting image using UIImagePNGRepresentation and save the resulting NSData object using writeToFile:atomically: (or similar). Instantiate an NSURLRequest object referencing the image, and use the UIImageView method loadRequest:. Quick answer (-;
  • HurkNburkS
    HurkNburkS almost 11 years
    This didnt really work but it is the post that helped me the most :) I had to use this code ** NSData data = [[NSData alloc] initWithData:[NSData dataFromBase64String:xmlString]];* and to disp[lay on webview [myWebView loadData:data MIMEType:@"image/png" textEncodingName:nil baseURL:nil];
  • Aurelien Cobb
    Aurelien Cobb over 10 years
    Worked for me. Thanks
  • Vishal Singh
    Vishal Singh almost 10 years
    iOS7 has new methods for this purpose - (id)initWithBase64EncodedString:(NSString *)base64String options:(NSDataBase64DecodingOptions)options and - (NSString *)base64EncodedStringWithOptions:(NSDataBase64EncodingOption‌​s)options
  • Shamas S
    Shamas S over 8 years
    Please consider adding more detail to your answer.