Jeśli mam obiekt UIImage
z elementu imagePicker, w jaki sposób mogę go zapisać w podfolderze w katalogu dokumentów?Jak zapisać UIImage do pliku?
Odpowiedz
Trzeba construct a representation of your image as a particular format (powiedzmy, JPEG lub PNG), a następnie zadzwonić writeToFile:atomically:
w reprezentacji:
UIImage *image = ...;
NSString *path = ...;
[UIImageJPEGRepresentation(image, 1.0) writeToFile:path atomically:YES];
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.
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];
NSData *imageData = UIImagePNGRepresentation(image);
[imageData writeToFile:path atomically:YES];
gdzie ścieżka jest nazwą pliku, który chcesz napisać do.
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];
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)
Nie jest już ważna - musisz użyć funkcji '.write() throws' –
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")
Tracisz wszystkie informacje o orientacji za pomocą UIImagePNGRepresentation. –
, w jaki sposób mogę zapisać obrazy bez utraty informacji? – Pol