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

Possible Duplicate:
Getting Image from URL/server

Is it possible for me to download an image from website and save it permantently inside my app? I really have no idea, but it would make a nice feature for my app.

share|improve this question

marked as duplicate by ACB, Janak Nirmal, Alessandro Minoccheri, InfantPro'Aravind', Pfitz Dec 13 '12 at 8:11

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

6 Answers

up vote 20 down vote accepted

Yes, that's possible.

Download, Create and Display an Image from URL

Check the below blog post,it's step by step guide with source code .

Download an Image and Save it as PNG or JPEG in iPhone SDK

share|improve this answer

Get Image From URL

-(UIImage *) getImageFromURL:(NSString *)fileURL {
    UIImage * result;

    NSData * data = [NSData dataWithContentsOfURL:[NSURL URLWithString:fileURL]];
    result = [UIImage imageWithData:data];

    return result;
}

Save Image inside App

-(void) saveImage:(UIImage *)image withFileName:(NSString *)imageName ofType:(NSString *)extension inDirectory:(NSString *)directoryPath {
    if ([[extension lowercaseString] isEqualToString:@"png"]) {
        [UIImagePNGRepresentation(image) writeToFile:[directoryPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.%@", imageName, @"png"]] options:NSAtomicWrite error:nil];
    } else if ([[extension lowercaseString] isEqualToString:@"jpg"] || [[extension lowercaseString] isEqualToString:@"jpeg"]) {
        [UIImageJPEGRepresentation(image, 1.0) writeToFile:[directoryPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.%@", imageName, @"jpg"]] options:NSAtomicWrite error:nil];
    } else {
        ALog(@"Image Save Failed\nExtension: (%@) is not recognized, use (PNG/JPG)", extension);
    }
}
share|improve this answer

You cannot save anything inside the app's bundle, but you can use +[NSData dataWithContentsOfURL:] to store the image in your app's documents directory, e.g.:

NSData *imageData = [NSData dataWithContentsOfURL:myImageURL];
NSString *imagePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:@"/myImage.png"];
[imageData writeToFile:imagePath atomically:YES];

Not exactly permanent, but it stays there at least until the user deletes the app.

share|improve this answer
This answer is better than the accepted one, because if you save it as PNG or JPEG using the UIImage UIImageJPEGRepresentation or UIImagePNGRepresentation, the data size on the iPhone disk is the double than the original. With this code you just store the original data. – jcesar Sep 4 '12 at 10:01

That's the main concept. Have fun ;)

NSURL *url = [NSURL URLWithString:@"http://example.com/yourImage.png"];
NSData *data = [NSData dataWithContentsOfURL:url];
NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
path = [path stringByAppendingString:@"/yourLocalImage.png"];
[data writeToFile:path atomically:YES];
share|improve this answer
Writing it to a folder path is not possible. – rightfold Jun 4 '11 at 17:14
Thanks, forgot to add the file name. – cem Jun 4 '11 at 17:18

Since we are on IO5 now, you no longer need to write images to disk neccessarily.
You are now able to set "allow external storage" on an coredata binary attribute. According to apples release notes it means the following:

Small data values like image thumbnails may be efficiently stored in a database, but large photos or other media are best handled directly by the file system. You can now specify that the value of a managed object attribute may be stored as an external record - see setAllowsExternalBinaryDataStorage: When enabled, Core Data heuristically decides on a per-value basis if it should save the data directly in the database or store a URI to a separate file which it manages for you. You cannot query based on the contents of a binary data property if you use this option.

share|improve this answer

Old post, but I'll throw on a few examples using asynchronous requests.

Up first, blocks in NSURLConnection:

- (void)NSURLConnectionExample
{
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com/images/srpr/logo3w.png"] cachePolicy:NSURLCacheStorageNotAllowed timeoutInterval:10.0];
    [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *err){
        if (!err && data) {
            NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
            NSString *documents = [paths objectAtIndex:0];
            NSString *finalPath = [documents stringByAppendingPathComponent:@"myImageName.png"];
            [data writeToFile:finalPath atomically:YES];
        }
    }];
}

Up next we have ASIHTTPRequest, a convenience wrapper for CFNetwork. ASI may not be as well suited for this basic of use because there's a lot less set up involved in using NSURLConnection. However, if you'll have going back and forth between a lot of basic HTTP requests and connecting with REST services then I definitely recommend it.

- (void)ASIHTTPRequestExample
{
    NSURL *url = [NSURL URLWithString:@"http://www.google.com/images/srpr/logo3w.png"];
    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
    [request setDelegate:self];
    [request setDidFinishSelector:@selector(requestFinished:)];
    [request setDidFailSelector:@selector(requestFailed:)];

    [[NSOperationQueue mainQueue] addOperation:request];
}
- (void)requestFinished:(ASIHTTPRequest *)request
{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documents = [paths objectAtIndex:0];
    NSString *finalPath = [documents stringByAppendingPathComponent:@"myImageName.png"];
    [[request responseData] writeToFile:finalPath atomically:YES];
}

- (void)requestFailed:(ASIHTTPRequest *)request
{
    NSError *error = [request error];
    NSLog(@"%@",error);
}

And finally, Grand Central Dispatch.

- (void)GrandCentralDispatchExample
{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documents = [paths objectAtIndex:0];
    NSString *finalPath = [documents stringByAppendingPathComponent:@"myImageName.png"];

    dispatch_queue_t imageQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH,  0ul);

    dispatch_async(imageQueue, ^{
        NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.google.com/images/srpr/logo3w.png"]];
                             dispatch_async(dispatch_get_main_queue(), ^{
                                 [data writeToFile:finalPath atomically:YES];
                             });

    });
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.