イメージをUIImagePickerのものから取り出して、サンドボックス環境、ドキュメントフォルダなどに一時的に保存したい。しかし、私はこれを行う方法を知らない、誰かが私を助けることができますか?おかげイメージをサンドボックスに保存する方法 - iPhone SDK
瞬間画像UIImageである
イメージをUIImagePickerのものから取り出して、サンドボックス環境、ドキュメントフォルダなどに一時的に保存したい。しかし、私はこれを行う方法を知らない、誰かが私を助けることができますか?おかげイメージをサンドボックスに保存する方法 - iPhone SDK
瞬間画像UIImageである
画像を保存:
-(void)saveImage:(UIImage*)image{
NSString *imagePath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/someImageName.png"];
[UIImagePNGRepresentation(image) writeToFile:imagePath atomically:YES];
}
画像をロード
-(UIImage)loadImage{
NSString *imagePath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/someImageName.png"];
UIImage *image = [UIImage imageWithContentsOfFile:imagePath];
}
-(void)SaveImage
{
NSData *data;
NSArray *paths;
NSString *documentsDirectory,*imagePath ;
UIImage *image=[UIImage imageNamed:@"public.png"];
paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
documentsDirectory = [paths objectAtIndex:0];
imagePath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"public.png"]];
data = UIImagePNGRepresentation(image);
[data writeToFile:imagePath atomically:YES];
}
を参照してください:http://stackoverflow.com/質問/ 5794422/iphone-save-uiimage-to-desktop-on-simulator –
これは良いことですが、離れていてもデスクトップに保存したくないコードがデバイス上で実行されているときに多くを使用してください – Jon