Comment enregistrer une UIImage dans un fichier?


Réponses:


129

Bien sûr, vous pouvez créer des sous-dossiers dans le dossier documents de votre application. Vous avez l'habitude NSFileManagerde faire cela.

Vous utilisez UIImagePNGRepresentationpour convertir votre image en NSData et l'enregistrer sur le disque.

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

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

Au fait, Core Data n'a rien à voir avec la sauvegarde des images sur le disque.


Vous perdez toutes les informations d'orientation à l'aide de UIImagePNGRepresentation.

1
alors comment puis-je enregistrer des images sans perdre d'informations?
Pol

@Pol, vous pouvez soit l'enregistrer sous UIImageJPEGRepresentation, soit corriger l'orientation vous-même, diverses solutions dans le lien stackoverflow.com/questions/3554244
...

26

Dans 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
N'est plus valable - vous devez utiliser.write() throws
Andrew K


17

Les éléments ci-dessus sont utiles, mais ils ne répondent pas à votre question de savoir comment enregistrer dans un sous-répertoire ou obtenir l'image à partir d'un UIImagePicker.

Tout d'abord, vous devez spécifier que votre contrôleur implémente le délégué du sélecteur d'images, dans un fichier de code .m ou .h, tel que:

@interface CameraViewController () <UIImagePickerControllerDelegate>

@end

Ensuite, vous implémentez la méthode imagePickerController: didFinishPickingMediaWithInfo: du délégué, qui est l'endroit où vous pouvez obtenir la photo à partir du sélecteur d'images et l'enregistrer (bien sûr, vous pouvez avoir une autre classe / objet qui gère l'enregistrement, mais je vais simplement montrer le code à l'intérieur de la méthode):

- (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];
}

Si vous souhaitez enregistrer en tant qu'image JPEG, les 3 dernières lignes seraient:

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];

où chemin est le nom du fichier dans lequel vous voulez l'écrire.


4

Vous devez d'abord obtenir le répertoire 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"];

Ensuite, vous devez enregistrer la photo dans le fichier

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

4

Dans 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

Dans 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
    }
}
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.