web-dev-qa-db-fra.com

Comment sauvegarder un UIImage dans un fichier?

Si j'ai un UIImage d'un imagePicker, comment puis-je l'enregistrer dans un sous-dossier du répertoire de documents?

103
user1542660

Bien sûr, vous pouvez créer des sous-dossiers dans le dossier Documents de votre application. Vous utilisez NSFileManager pour le faire.

Vous utilisez UIImagePNGRepresentation pour convertir votre image en NSData et l’enregistrer sur un 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 d’images sur disque.

128
DrummerB

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)
25
NatashaTheRobot

Vous devez construire une représentation de votre image dans un format particulier (par exemple, JPEG ou PNG), puis appeler writeToFile:atomically: sur la représentation:

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

Les informations ci-dessus sont utiles, mais elles ne répondent pas à votre question sur la sauvegarde dans un sous-répertoire ou l'obtention de l'image à partir d'un UIImagePicker.

Tout d'abord, vous devez spécifier que votre contrôleur implémente le délégué de sélecteur d'image, 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 vous permet d'extraire la photo du sélecteur d'images et de l'enregistrer (bien sûr, vous pouvez avoir une autre classe/objet qui gère la sauvegarde, mais je montrerai simplement le code dans 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 sont:

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

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

6
Maggie

D'abord, vous devriez 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 devriez enregistrer la photo dans le fichier

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

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

3
Torianin

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