web-dev-qa-db-ja.com

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

ImagePickerからUIImageがある場合、それをドキュメントディレクトリのサブフォルダーに保存するにはどうすればよいですか?

103
user1542660

もちろん、アプリのドキュメントフォルダーにサブフォルダーを作成できます。これを行うには 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];

コアデータは、画像をディスクに保存することとは関係ありません。

128
DrummerB

Swift 3:

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

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

特定の形式として画像の表現を構築する (たとえば、JPEGまたはPNG)し、表現に対してwriteToFile:atomically:を呼び出す必要があります。

UIImage *image = ...;
NSString  *path = ...;
[UIImageJPEGRepresentation(image, 1.0) writeToFile:path atomically:YES];
24
dasblinkenlight

上記は便利ですが、サブディレクトリに保存する方法や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];
15
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")
11
neoneye
NSData *imageData = UIImagePNGRepresentation(image);
[imageData writeToFile:path atomically:YES];

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

6
Maggie

まず、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
lu yuan

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
    }
}

3
Torianin

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
    }
}
2
Samo