文書ディレクトリフォルダに画像を取得したい。文書ディレクトリフォルダ内の画像を取得しない
私はこのコードを使用しています。
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];
}
ドキュメントディレクトリフォルダに画像を取得できません。
このコードで何が問題になる可能性がありますか?
私はURLから画像を取得し、NSDataを取得する必要があるようにその画像を変換する必要があります。 –
URLからイメージを取得する必要があり、それを達成できません。 – booleanBoy
私のコードで言及しているようにnsusrl * imgはURLを取得しますが、nsdataではnull値を取得します。 –