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];
ちなみに、コアデータは、イメージをディスクに保存することとは関係ありません。
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:メソッドを実装します。これは、画像ピッカーから写真を取得して保存できる場所です(もちろん、保存を処理する別のクラス/オブジェクトがあるかもしれませんが、コードだけを示します)メソッド内):
- (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")
まず、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
}
}