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

I want to get images in document directory folder.

I am using this code.

  NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);

  for(int i=0;i<[imagepath count];i++)
  {
  NSString* documentsDirectory = [path objectAtIndex:0];

  NSURL *img = [NSURL URLWithString:[imagepath objectAtIndex:i]];

  //here imagepath is array in that i get the url of image.
  //here when i print the img data i got url from where i have to get images.


  NSData *data = [NSData dataWithContentsOfURL:img options:NSDataReadingMapped error:nil];

  //here when i put NSLog i get the null.

  NSString *fullImagePath1 = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"image%d.png",i]];

 [newreturnImage addObject:fullImagePath1];

 [data writeToFile:fullImagePath1 options:NSDataWritingAtomic error:nil];
 }

I can't get images in document directory folder.

What could be wrong with this code?

share|improve this question

2 Answers

up vote 3 down vote accepted

Try this code,

NSArray *sysPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);
    NSString *docDirectory = [sysPaths objectAtIndex:0];
    NSString *filePath = [NSString stringWithFormat:@"%@/%@", docDirectory,@"myimage.png"];
    UIImage *cellImage=[UIImage imageWithContentsOfFile:filePath];
    UIImageView *temp=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 40, 40)];
    temp.image=cellImage;
    [myView addSubview:temp];
    [temp release];

Updated :

NSData *myData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:myURL]];
UIImage *myImage = [[UIImage alloc] initWithData:myData];
share|improve this answer
I get the images from url,and i have to convert that image so that i have to take NSData. – Ankit Sep 13 '11 at 6:53
so u need to fetch image from an URL and u are not able to achieve it ? – booleanBoy Sep 13 '11 at 7:02
as mention in my code nsusrl *img in that i get the url but in nsdata get the null value. – Ankit Sep 13 '11 at 7:06
@Ankit try the updated code.. – booleanBoy Sep 13 '11 at 7:26

This link may help you. In the link James Webster has provided an excellent method which suits your requirement. If this does not help you. The code below that would definitely work for you as it works for me.

How save images in home directory?

NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);

  for(int i=0;i<[imagepath count];i++)
  {
  NSString* documentsDirectory = [path objectAtIndex:0];

  NSURL *img = [NSURL URLWithString:[imagepath objectAtIndex:i]];

  NSData *imageData = [[NSData alloc] initWithContentsOfURL:img];

  NSString *fullImagePath1 = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"image%d.png",i]];

 [newreturnImage addObject:fullImagePath1];

 [data writeToFile:fullImagePath1 options:NSDataWritingAtomic error:nil];
 }

Hope this helps you.

Thanks.

share|improve this answer
Anyways.. this may help someone else if not you. – Parth Bhatt Sep 13 '11 at 17:22

Your Answer

 
discard

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

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