2012-07-21 6 views

Odpowiedz

115

oczywiście można tworzyć podfoldery w folderze dokumentów z aplikacji. Do tego celu służy NSFileManager.

Używasz UIImagePNGRepresentation do konwersji obrazu na NSData i zapisania go na dysku.

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

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

Core Data nie ma nic wspólnego z zapisywaniem obrazów na dysku przy okazji.

+0

Tracisz wszystkie informacje o orientacji za pomocą UIImagePNGRepresentation. –

+1

, w jaki sposób mogę zapisać obrazy bez utraty informacji? – Pol

3

Najpierw należy uzyskać katalogu 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"]; 

Następnie należy zapisać zdjęcie do pliku

NSData *photoData = UIImageJPEGRepresentation(photoImage, 1); 
[photoData writeToFile:filePath atomically:YES]; 
6
NSData *imageData = UIImagePNGRepresentation(image); 
[imageData writeToFile:path atomically:YES]; 

gdzie ścieżka jest nazwą pliku, który chcesz napisać do.

14

Powyższe informacje są użyteczne, ale nie odpowiadają na pytanie, jak zapisać w podkatalogu lub uzyskać obraz z obiektu UIImagePicker.

Po pierwsze, należy określić, że kontroler realizuje delegata powiększenie zbieracz jest w obu .m lub .h pliku kodu, takich jak:

@interface CameraViewController() <UIImagePickerControllerDelegate> 

@end 

Następnie wdrożyć imagePickerController Delegatury: didFinishPickingMediaWithInfo: metoda, która jest gdzie można dostać fotografię z próbnika obrazu i zapisać go (oczywiście, można mieć inną klasę/obiekt, który obsługuje oszczędności, ale ja po prostu pokazać kod wewnątrz metody):

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

Jeśli chcesz zapisać jako obraz JPEG, la st 3 linie byłoby:

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

w Swift 3:

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

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

Nie jest już ważna - musisz użyć funkcji '.write() throws' –

9
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")