ฉันจะบันทึก UIImage ลงในไฟล์ได้อย่างไร


110

ถ้าฉันมีUIImageจาก imagePicker ฉันจะบันทึกลงในโฟลเดอร์ย่อยในไดเร็กทอรีเอกสารได้อย่างไร

คำตอบ:


130

แน่นอนคุณสามารถสร้างโฟลเดอร์ย่อยในโฟลเดอร์เอกสารของแอพของคุณได้ คุณเคย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];

Core Data ไม่มีส่วนเกี่ยวข้องกับการบันทึกภาพลงในดิสก์


คุณสูญเสียข้อมูลการวางแนวทั้งหมดโดยใช้ UIImagePNGRepresentation

1
แล้วจะบันทึกภาพโดยไม่ให้ข้อมูลสูญหายได้อย่างไร?
พล

@Pol คุณสามารถบันทึกเป็น UIImageJPEG เป็นตัวแทนหรือแก้ไขการวางแนวด้วยตัวเองวิธีแก้ปัญหาต่างๆในลิงค์stackoverflow.com/questions/3554244/…
user1210182

27

ใน 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
ใช้ไม่ได้อีกต่อไป - คุณต้องใช้.write() throws
Andrew K


17

ข้างต้นมีประโยชน์ แต่ไม่ตอบคำถามของคุณเกี่ยวกับวิธีบันทึกในไดเรกทอรีย่อยหรือรับภาพจาก UIImagePicker

ขั้นแรกคุณต้องระบุว่าคอนโทรลเลอร์ของคุณใช้ตัวแทนของเครื่องมือเลือกรูปภาพในไฟล์รหัส. m หรือ. h เช่น:

@interface CameraViewController () <UIImagePickerControllerDelegate>

@end

จากนั้นคุณใช้ imagePickerController: didFinishPickingMediaWithInfo: method ของผู้รับมอบสิทธิ์ซึ่งเป็นที่ที่คุณสามารถรับภาพถ่ายจากเครื่องมือเลือกภาพและบันทึก (แน่นอนคุณอาจมีคลาส / วัตถุอื่นที่จัดการการบันทึก แต่ฉันจะแสดงรหัส ภายในวิธีการ):

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

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

โดยพา ธ คือชื่อของไฟล์ที่คุณต้องการเขียน


4

ก่อนอื่นคุณควรได้รับไดเร็กทอรี 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

ใน 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

ใน 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
    }
}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.