ถ้าฉันมีUIImage
จาก imagePicker ฉันจะบันทึกลงในโฟลเดอร์ย่อยในไดเร็กทอรีเอกสารได้อย่างไร
ถ้าฉันมีUIImage
จาก imagePicker ฉันจะบันทึกลงในโฟลเดอร์ย่อยในไดเร็กทอรีเอกสารได้อย่างไร
คำตอบ:
แน่นอนคุณสามารถสร้างโฟลเดอร์ย่อยในโฟลเดอร์เอกสารของแอพของคุณได้ คุณเคย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 ไม่มีส่วนเกี่ยวข้องกับการบันทึกภาพลงในดิสก์
ใน Swift 3:
// Create path.
let paths = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)
let filePath = "\(paths[0])/MyImageName.png"
// Save image.
UIImagePNGRepresentation(image)?.writeToFile(filePath, atomically: true)
.write() throws
คุณต้องสร้างการแสดงภาพของคุณเป็นรูปแบบเฉพาะ (เช่น JPEG หรือ PNG) จากนั้นเรียกwriteToFile:atomically:
ตัวแทน:
UIImage *image = ...;
NSString *path = ...;
[UIImageJPEGRepresentation(image, 1.0) writeToFile:path atomically:YES];
ข้างต้นมีประโยชน์ แต่ไม่ตอบคำถามของคุณเกี่ยวกับวิธีบันทึกในไดเรกทอรีย่อยหรือรับภาพจาก 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];
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")
NSData *imageData = UIImagePNGRepresentation(image);
[imageData writeToFile:path atomically:YES];
โดยพา ธ คือชื่อของไฟล์ที่คุณต้องการเขียน
ก่อนอื่นคุณควรได้รับไดเร็กทอรี 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];
ใน 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
}
}
ใน 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
}
}