UIImageをファイルに保存するにはどうすればよいですか?


回答:


129

もちろん、アプリのドキュメントフォルダーにサブフォルダーを作成できます。あなたはそれNSFileManagerをするのに使います。

UIImagePNGRepresentation画像をNSDataに変換してディスクに保存するために使用します。

// Create path.
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"Image.png"];

// Save image.
[UIImagePNGRepresentation(image) writeToFile:filePath atomically:YES];

ちなみに、コアデータは、イメージをディスクに保存することとは関係ありません。


UIImagePNGRepresentationを使用すると、すべての方向情報が失われます。

1
では、情報を失わずに画像を保存するにはどうすればよいですか?
Pol

あなたはどちらか自分で、リンク内のさまざまなソリューションUIImageJPEGRepresentationとして保存したり向きを修正することができ@Pol stackoverflow.com/questions/3554244/...を
user1210182

26

Swift 3の場合:

// Create path.
let paths = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)
let filePath = "\(paths[0])/MyImageName.png"

// Save image.
UIImagePNGRepresentation(image)?.writeToFile(filePath, atomically: true)

3
無効-使用する必要があります.write() throws
Andrew K


17

上記は便利ですが、サブディレクトリに保存する方法や、UIImagePickerから画像を取得する方法についての質問には答えません。

最初に、コントローラがイメージピッカーのデリゲートを実装することを、次のような.mまたは.hコードファイルで指定する必要があります。

@interface CameraViewController () <UIImagePickerControllerDelegate>

@end

次に、デリゲートのimagePickerController:didFinishPickingMediaWithInfo:メソッドを実装します。これは、画像ピッカーから写真を取得して保存できる場所です(もちろん、保存を処理する別のクラス/オブジェクトがあるかもしれませんが、コードだけを示します)メソッド内):

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    // get the captured image
    UIImage *image = (UIImage *)info[UIImagePickerControllerOriginalImage];


    NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
    NSString *imageSubdirectory = [documentsDirectory stringByAppendingPathComponent:@"MySubfolderName"];

    NSString *filePath = [imageSubdirectory stringByAppendingPathComponent:@"MyImageName.png"];

    // Convert UIImage object into NSData (a wrapper for a stream of bytes) formatted according to PNG spec
    NSData *imageData = UIImagePNGRepresentation(image); 
    [imageData writeToFile:filePath atomically:YES];
}

JPEG画像として保存する場合、最後の3行は次のようになります。

NSString *filePath = [imageSubdirectory stringByAppendingPathComponent:@"MyImageName.jpg"];

// Convert UIImage object into NSData (a wrapper for a stream of bytes) formatted according to JPG spec
NSData *imageData = UIImageJPEGRepresentation(image, 0.85f); // quality level 85%
[imageData writeToFile:filePath atomically:YES];

12
extension UIImage {
    /// Save PNG in the Documents directory
    func save(_ name: String) {
        let path: String = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first!
        let url = URL(fileURLWithPath: path).appendingPathComponent(name)
        try! UIImagePNGRepresentation(self)?.write(to: url)
        print("saved image at \(url)")
    }
}

// Usage: Saves file in the Documents directory
image.save("climate_model_2017.png")

6
NSData *imageData = UIImagePNGRepresentation(image);
[imageData writeToFile:path atomically:YES];

ここで、pathは、書き込み先のファイルの名前です。


4

まず、Documentsディレクトリを取得する必要があります

/* create path to cache directory inside the application's Documents directory */
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"fileName"];

次に、写真をファイルに保存する必要があります

NSData *photoData = UIImageJPEGRepresentation(photoImage, 1);
[photoData writeToFile:filePath atomically:YES];

4

Swift 4.2の場合:

// Create path.
let paths = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
if let filePath = paths.first?.appendingPathComponent("MyImageName.png") {
    // Save image.
    do {
       try image.pngData()?.write(to: filePath, options: .atomic)
    } catch {
       // Handle the error
    }
}

2

Swift 4の場合:

// Create path.
let paths = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
if let filePath = paths.first?.appendingPathComponent("MyImageName.png") {
    // Save image.
    do {
       try UIImagePNGRepresentation(image)?.write(to: filePath, options: .atomic)
    }
    catch {
       // Handle the error
    }
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.