IOSのUIViewからアプリケーションドキュメントフォルダーに画像を保存する


114

保存できるまでユーザーが画像を配置して保持できるUIImageViewがあります。問題は、ビューに配置した画像を実際に保存して取得する方法がわからないことです。

次のようにして、UIImageViewに画像を取得して配置しました。

//Get Image 
- (void) getPicture:(id)sender {
    UIImagePickerController *picker = [[UIImagePickerController alloc] init];
    picker.delegate = self;
    picker.allowsEditing = YES;
    picker.sourceType = (sender == myPic) ? UIImagePickerControllerSourceTypeCamera : UIImagePickerControllerSourceTypeSavedPhotosAlbum;
    [self presentModalViewController:picker animated:YES];
    [picker release];
}


- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage (UIImage *)image editingInfo:(NSDictionary *)editingInfo {
    myPic.image = image;
    [picker dismissModalViewControllerAnimated:YES];
}

選択した画像をUIImageViewにうまく表示しますが、保存方法がわかりません。ビューの他のすべての部分(主にUITextfield)をコアデータに保存しています。私は検索して検索し、人々が提案した多くのコードを試してみましたが、コードを正しく入力していないか、それらの提案が私のコードの設定方法で機能しません。前者のようです。UITextFieldsにテキストを保存するのと同じアクション(保存ボタン)を使用して、UIImageViewに画像を保存したいのですが。UITextField情報を保存する方法は次のとおりです。

// Handle Save Button
- (void)save {

    // Get Info From UI
    [self.referringObject setValue:self.myInfo.text forKey:@"myInfo"];

前に言ったように、これを機能させるためにいくつかの方法を試しましたが、理解することができません。私の人生で初めて、無生物に身体的な危害を加えたかったのですが、なんとか自分自身を抑えることができました。

ユーザーが配置した画像をアプリケーションのドキュメントフォルダーのUIImageViewに保存し、ユーザーがそのビューをスタックにプッシュしたときに、その画像を取得して別のUIImageViewに配置し、表示できるようにしたいと考えています。どんな助けでも大歓迎です!

回答:


341

いいわね 自分や他人を傷つけないでください。

データセットが大きくなりすぎるとパフォーマンスに影響を与える可能性があるため、これらのイメージをCore Dataに格納することはおそらく望ましくありません。画像をファイルに書き込む方がよい。

NSData *pngData = UIImagePNGRepresentation(image);

これは、キャプチャした画像のPNGデータを引き出します。ここから、ファイルに書き込むことができます。

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);  
NSString *documentsPath = [paths objectAtIndex:0]; //Get the docs directory 
NSString *filePath = [documentsPath stringByAppendingPathComponent:@"image.png"]; //Add the file name
[pngData writeToFile:filePath atomically:YES]; //Write the file

後でそれを読むことも同じように機能します。上記で行ったようにパスを作成し、次に:

NSData *pngData = [NSData dataWithContentsOfFile:filePath];
UIImage *image = [UIImage imageWithData:pngData];

おそらくコードに散らかされたくないので、パス文字列を作成するメソッドを作成することになるでしょう。次のようになります。

- (NSString *)documentsPathForFileName:(NSString *)name
{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);  
    NSString *documentsPath = [paths objectAtIndex:0];

    return [documentsPath stringByAppendingPathComponent:name]; 
}

お役に立てば幸いです。


2
完全に正しい-画像の性質に依存するので、Appleストレージガイドラインに言及したいだけです。それは、キャッシュの下に保存する必要があります
Daij-Djan

私はあなたの提案とコードに従いました。写真のセクションには表示されません。どうしてそうなった?
NovusMobile 2017年

@DaniloCampos Documents Directory内にフォルダーを作成し、そのフォルダー内にファイルを保存する方法
Pradeep Reddy Kypa 2017年

3

Swift 3.0バージョン

let documentDirectoryPath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0] as NSString
        
let img = UIImage(named: "1.jpg")!// Or use whatever way to get the UIImage object
let imgPath = URL(fileURLWithPath: documentDirectoryPath.appendingPathComponent("1.jpg"))// Change extension if you want to save as PNG

do{
    try UIImageJPEGRepresentation(img, 1.0)?.write(to: imgPath, options: .atomic)//Use UIImagePNGRepresentation if you want to save as PNG
}catch let error{
    print(error.localizedDescription)
}

2

これは、Swift 4.2 に対するFangming Ningの回答 であり、ドキュメントディレクトリパスを取得するための推奨れるより迅速な方法と、より優れたドキュメントで更新されています。新しい方法のFangming Ningの功績も。

guard let documentDirectoryPath = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first else {
    return
}

//Using force unwrapping here because we're sure "1.jpg" exists. Remember, this is just an example.
let img = UIImage(named: "1.jpg")!

// Change extension if you want to save as PNG.
let imgPath = documentDirectoryPath.appendingPathComponent("1.jpg")

do {
    //Use .pngData() if you want to save as PNG.
    //.atomic is just an example here, check out other writing options as well. (see the link under this example)
    //(atomic writes data to a temporary file first and sending that file to its final destination)
    try img.jpegData(compressionQuality: 1)?.write(to: imgPath, options: .atomic)
} catch {
    print(error.localizedDescription)
}

可能なすべてのデータ書き込みオプションをここで確認してください。


これは正しいです?ここで別の質問への回答私はfileURLWithPath一緒にabsoluteString間違っていることがわかりました。
ダンブルダッド

@dumbledad情報ありがとうございます。回答を更新し、Swift 4.2のコードも書き直しました。
タマシュSengel

2
#pragma mark - Save Image To Local Directory

- (void)saveImageToDocumentDirectoryWithImage:(UIImage *)capturedImage {
    NSError *error;
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0]; // Get documents folder
    NSString *dataPath = [documentsDirectory stringByAppendingPathComponent:@"/images"];
    
    //Create a folder inside Document Directory
    if (![[NSFileManager defaultManager] fileExistsAtPath:dataPath])
        [[NSFileManager defaultManager] createDirectoryAtPath:dataPath withIntermediateDirectories:NO attributes:nil error:&error]; //Create folder

    NSString *imageName = [NSString stringWithFormat:@"%@/img_%@.png", dataPath, [self getRandomNumber]] ;
    // save the file
    if ([[NSFileManager defaultManager] fileExistsAtPath:imageName]) {
        // delete if exist
        [[NSFileManager defaultManager] removeItemAtPath:imageName error:nil];
    }
    
    NSData *imageDate = [NSData dataWithData:UIImagePNGRepresentation(capturedImage)];
    [imageDate writeToFile: imageName atomically: YES];
}


#pragma mark - Generate Random Number

- (NSString *)getRandomNumber {
    NSTimeInterval time = ([[NSDate date] timeIntervalSince1970]); // returned as a double
    long digits = (long)time; // this is the first 10 digits
    int decimalDigits = (int)(fmod(time, 1) * 1000); // this will get the 3 missing digits
    //long timestamp = (digits * 1000) + decimalDigits;
    NSString *timestampString = [NSString stringWithFormat:@"%ld%d",digits ,decimalDigits];
    return timestampString;
}

1

拡張子付きのSwift 4

extension UIImage{

func saveImage(inDir:FileManager.SearchPathDirectory,name:String){
    guard let documentDirectoryPath = FileManager.default.urls(for: inDir, in: .userDomainMask).first else {
        return
    }
    let img = UIImage(named: "\(name).jpg")!

    // Change extension if you want to save as PNG.
    let imgPath = URL(fileURLWithPath: documentDirectoryPath.appendingPathComponent("\(name).jpg").absoluteString)
    do {
        try UIImageJPEGRepresentation(img, 0.5)?.write(to: imgPath, options: .atomic)
    } catch {
        print(error.localizedDescription)
    }
  }
}

使用例

 image.saveImage(inDir: .documentDirectory, name: "pic")

0

Swiftの場合:

let paths: [NSString?] = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .LocalDomainMask, true)
if let path = paths[0]?.stringByAppendingPathComponent(imageName) {
    do {
        try UIImagePNGRepresentation(image)?.writeToFile(path, options: .DataWritingAtomic)
    } catch {
        return
    }
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.