iPhoneの写真ライブラリに画像を保存する方法は?


回答:


411

この関数を使用できます。

UIImageWriteToSavedPhotosAlbum(UIImage *image, 
                               id completionTarget, 
                               SEL completionSelector, 
                               void *contextInfo);

あなただけの必要completionTargetcompletionSelectorcontextInfoをあなたはときに通知されるようにしたい場合はUIImage保存行われているそうあなたが渡すことができ、nil

公式ドキュメントをUIImageWriteToSavedPhotosAlbum()参照してください。



こんにちはあなたの素晴らしい解決策をありがとう。ここで、画像をフォトライブラリに保存するときに重複を回避する方法を1つ疑います。前もって感謝します。
Naresh 14

:あなたはより良い品質で保存したい場合は、この参照stackoverflow.com/questions/1379274/...
Eonil

4
ユーザーのアルバムに写真を保存するには、iOS 11の時点で「プライバシー-写真ライブラリの追加の使用法の説明」を追加する必要があります。
horsejockey 2017年

1
保存した画像に名前を付ける方法は?
Priyal

63

iOS 9.0では非推奨。

iOS 4.0以降のAssetsLibraryフレームワークを使用してUIImageWriteToSavedPhotosAlbumよりもはるかに高速な方法があります。

    ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];

    [library writeImageToSavedPhotosAlbum:[image CGImage] orientation:(ALAssetOrientation)[image imageOrientation] completionBlock:^(NSURL *assetURL, NSError *error){
    if (error) {
    // TODO: error handling
    } else {
    // TODO: success handling
    }
}];
[library release];

1
写真とともに任意のメタデータを保存する方法はありますか?
zakdances 2012

2
を使用して保存しALAssetsLibraryてみましたが、と同じ時間で保存できますUIImageWriteToSavedPhotosAlbum
Hlung、2012

そして、これはカメラをフリーズします:(私はそれがサポートされている背景ではないと思いますか?
Hlung

これは非常にクリーンなb / cで、ブロックを使用して補完を処理できます。
jpswain 2013

5
私はこのコードを使用していますが、AVFoundationではなく、このフレームワーク#import <AssetsLibrary / AssetsLibrary.h>を含めています。答えを編集してはいけませんか?@Denis
Julian Osorio


13

注意事項:コールバックを使用する場合は、セレクターが次の形式に準拠していることを確認してください。

- (void) image: (UIImage *) image didFinishSavingWithError: (NSError *) error contextInfo: (void *) contextInfo;

そうしないと、次のようなエラーでクラッシュします。

[NSInvocation setArgument:atIndex:]: index (2) out of bounds [-1, 1]


10

画像を配列から配列に渡すだけです

-(void) saveMePlease {

//Loop through the array here
for (int i=0:i<[arrayOfPhotos count]:i++){
         NSString *file = [arrayOfPhotos objectAtIndex:i];
         NSString *path = [get the path of the image like you would in DOCS FOLDER or whatever];
         NSString *imagePath = [path stringByAppendingString:file];
         UIImage *image = [[[UIImage alloc] initWithContentsOfFile:imagePath]autorelease];

         //Now it will do this for each photo in the array
         UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);
        }
}

タイポのちょっと申し訳ありませんがその場でこれをやっただけですが、あなたはポイントを得る


これを使用すると、いくつかの写真を見逃してしまいます。私は試しました。正しい方法は、完了セレクターからのコールバックを使用することです。
SamChen 2013

1
カスタム名で画像を保存できますか?
ユーザー1531343 2014年

このためにforループを使用することはできません。競合状態になり、クラッシュします。
saurabh

4

写真の配列を保存するときは、forループを使用せず、次のようにします

-(void)saveToAlbum{
   [self performSelectorInBackground:@selector(startSavingToAlbum) withObject:nil];
}
-(void)startSavingToAlbum{
   currentSavingIndex = 0;
   UIImage* img = arrayOfPhoto[currentSavingIndex];//get your image
   UIImageWriteToSavedPhotosAlbum(img, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
}
- (void)image: (UIImage *) image didFinishSavingWithError: (NSError *) error contextInfo: (void *) contextInfo{ //can also handle error message as well
   currentSavingIndex ++;
   if (currentSavingIndex >= arrayOfPhoto.count) {
       return; //notify the user it's done.
   }
   else
   {
       UIImage* img = arrayOfPhoto[currentSavingIndex];
       UIImageWriteToSavedPhotosAlbum(img, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
   }
}

4

ではスウィフト

    // Save it to the camera roll / saved photo album
    // UIImageWriteToSavedPhotosAlbum(self.myUIImageView.image, nil, nil, nil) or 
    UIImageWriteToSavedPhotosAlbum(self.myUIImageView.image, self, "image:didFinishSavingWithError:contextInfo:", nil)

    func image(image: UIImage!, didFinishSavingWithError error: NSError!, contextInfo: AnyObject!) {
            if (error != nil) {
                // Something wrong happened.
            } else {
                // Everything is alright.
            }
    }

はい...いいですが、画像を保存した後、ギャラリーから画像をロードしたいのですが...その方法
EIキャプテンv2.0

4

以下の関数が機能します。ここからコピーして貼り付けることができます...

-(void)savePhotoToAlbum:(UIImage*)imageToSave {

    CGImageRef imageRef = imageToSave.CGImage;
    NSDictionary *metadata = [NSDictionary new]; // you can add
    ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];

    [library writeImageToSavedPhotosAlbum:imageRef metadata:metadata completionBlock:^(NSURL *assetURL,NSError *error){
        if(error) {
            NSLog(@"Image save eror");
        }
    }];
}

2

スウィフト4

func writeImage(image: UIImage) {
    UIImageWriteToSavedPhotosAlbum(image, self, #selector(self.finishWriteImage), nil)
}

@objc private func finishWriteImage(_ image: UIImage, didFinishSavingWithError error: NSError?, contextInfo: UnsafeRawPointer) {
    if (error != nil) {
        // Something wrong happened.
        print("error occurred: \(String(describing: error))")
    } else {
        // Everything is alright.
        print("saved success!")
    }
}

1

私の最後の答えはそれをします。

保存する画像ごとに、NSMutableArrayに追加します

    //in the .h file put:

NSMutableArray *myPhotoArray;


///then in the .m

- (void) viewDidLoad {

 myPhotoArray = [[NSMutableArray alloc]init];



}

//However Your getting images

- (void) someOtherMethod { 

 UIImage *someImage = [your prefered method of using this];
[myPhotoArray addObject:someImage];

}

-(void) saveMePlease {

//Loop through the array here
for (int i=0:i<[myPhotoArray count]:i++){
         NSString *file = [myPhotoArray objectAtIndex:i];
         NSString *path = [get the path of the image like you would in DOCS FOLDER or whatever];
         NSString *imagePath = [path stringByAppendingString:file];
         UIImage *image = [[[UIImage alloc] initWithContentsOfFile:imagePath]autorelease];

         //Now it will do this for each photo in the array
         UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);
        }
}

私はあなたの解決策を試しました、それはいつもいくつかの写真を逃しました。私の答えを見てください。リンク
SamChen 2013

1
homeDirectoryPath = NSHomeDirectory();
unexpandedPath = [homeDirectoryPath stringByAppendingString:@"/Pictures/"];

folderPath = [NSString pathWithComponents:[NSArray arrayWithObjects:[NSString stringWithString:[unexpandedPath stringByExpandingTildeInPath]], nil]];

unexpandedImagePath = [folderPath stringByAppendingString:@"/image.png"];

imagePath = [NSString pathWithComponents:[NSArray arrayWithObjects:[NSString stringWithString:[unexpandedImagePath stringByExpandingTildeInPath]], nil]];

if (![[NSFileManager defaultManager] fileExistsAtPath:folderPath isDirectory:NULL]) {
    [[NSFileManager defaultManager] createDirectoryAtPath:folderPath attributes:nil];
}

この答えは、システムのフォトライブラリではなくサンドボックスに画像を保存しないため、正しくありません。
エヴァン

1

上記の回答のいくつかに基づいて、このためのUIImageViewカテゴリを作成しました。

ヘッダーファイル:

@interface UIImageView (SaveImage) <UIActionSheetDelegate>
- (void)addHoldToSave;
@end

実装

@implementation UIImageView (SaveImage)
- (void)addHoldToSave{
    UILongPressGestureRecognizer* longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)];
    longPress.minimumPressDuration = 1.0f;
    [self addGestureRecognizer:longPress];
}

-  (void)handleLongPress:(UILongPressGestureRecognizer*)sender {
    if (sender.state == UIGestureRecognizerStateEnded) {

        UIActionSheet* _attachmentMenuSheet = [[UIActionSheet alloc] initWithTitle:nil
                                                                          delegate:self
                                                                 cancelButtonTitle:@"Cancel"
                                                            destructiveButtonTitle:nil
                                                                 otherButtonTitles:@"Save Image", nil];
        [_attachmentMenuSheet showInView:[[UIView alloc] initWithFrame:self.frame]];
    }
    else if (sender.state == UIGestureRecognizerStateBegan){
        //Do nothing
    }
}
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{
    if  (buttonIndex == 0) {
        UIImageWriteToSavedPhotosAlbum(self.image, nil,nil, nil);
    }
}


@end

次に、imageviewでこの関数を呼び出すだけです。

[self.imageView addHoldToSave];

オプションで、minimumPressDurationパラメータを変更できます。


1

ではスウィフト2.2

UIImageWriteToSavedPhotosAlbum(image: UIImage, _ completionTarget: AnyObject?, _ completionSelector: Selector, _ contextInfo: UnsafeMutablePointer<Void>)

あなたが通知されるようにしたくない場合は、画像を保存して行われたとき、あなたはにnilを渡すことcompletionTargetcompletionSelectorcontextInfoパラメータ。

例:

UIImageWriteToSavedPhotosAlbum(image, self, #selector(self.imageSaved(_:didFinishSavingWithError:contextInfo:)), nil)

func imageSaved(image: UIImage!, didFinishSavingWithError error: NSError?, contextInfo: AnyObject?) {
        if (error != nil) {
            // Something wrong happened.
        } else {
            // Everything is alright.
        }
    }

ここで注意すべき重要な点は、画像の保存を監視するメソッドにはこれらの3つのパラメーターが必要です。そうしないと、NSInvocationエラーが発生します。

それが役に立てば幸い。


0

これを使えます

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
   UIImageWriteToSavedPhotosAlbum(img.image, nil, nil, nil);
});
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.