web-dev-qa-db-ja.com

iPhoneのフォトライブラリにメタデータ(EXIF、GPS、TIFF)と一緒にUIImageを書き込む

私はプロジェクトを開発しています。要件は次のとおりです。-ユーザーはアプリケーションからカメラを開きます-画像をキャプチャすると、キャプチャされた画像のメタデータに一部のデータが追加されます。私はいくつかのフォーラムを通過しました。このロジックをコーディングしようとしました。ポイントに到達したと思いますが、画像に追加しているメタデータが表示されないため、何かが足りません。私のコードは:

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)dictionary 
{

    [picker dismissModalViewControllerAnimated:YES];

    NSData *dataOfImageFromGallery = UIImageJPEGRepresentation (image,0.5);
    NSLog(@"Image length:  %d", [dataOfImageFromGallery length]);


    CGImageSourceRef source;
    source = CGImageSourceCreateWithData((CFDataRef)dataOfImageFromGallery, NULL);

    NSDictionary *metadata = (NSDictionary *) CGImageSourceCopyPropertiesAtIndex(source, 0, NULL);

    NSMutableDictionary *metadataAsMutable = [[metadata mutableCopy]autorelease];
    [metadata release];

    NSMutableDictionary *EXIFDictionary = [[[metadataAsMutable objectForKey:(NSString *)kCGImagePropertyExifDictionary]mutableCopy]autorelease];
    NSMutableDictionary *GPSDictionary = [[[metadataAsMutable objectForKey:(NSString *)kCGImagePropertyGPSDictionary]mutableCopy]autorelease];


    if(!EXIFDictionary) 
    {
        //if the image does not have an EXIF dictionary (not all images do), then create one for us to use
        EXIFDictionary = [NSMutableDictionary dictionary];
    }

    if(!GPSDictionary) 
    {
        GPSDictionary = [NSMutableDictionary dictionary];
    }

    //Setup GPS dict - 
    //I am appending my custom data just to test the logic……..

    [GPSDictionary setValue:[NSNumber numberWithFloat:1.1] forKey:(NSString*)kCGImagePropertyGPSLatitude];
    [GPSDictionary setValue:[NSNumber numberWithFloat:2.2] forKey:(NSString*)kCGImagePropertyGPSLongitude];
    [GPSDictionary setValue:@"lat_ref" forKey:(NSString*)kCGImagePropertyGPSLatitudeRef];
    [GPSDictionary setValue:@"lon_ref" forKey:(NSString*)kCGImagePropertyGPSLongitudeRef];
    [GPSDictionary setValue:[NSNumber numberWithFloat:3.3] forKey:(NSString*)kCGImagePropertyGPSAltitude];
    [GPSDictionary setValue:[NSNumber numberWithShort:4.4] forKey:(NSString*)kCGImagePropertyGPSAltitudeRef]; 
    [GPSDictionary setValue:[NSNumber numberWithFloat:5.5] forKey:(NSString*)kCGImagePropertyGPSImgDirection];
    [GPSDictionary setValue:@"_headingRef" forKey:(NSString*)kCGImagePropertyGPSImgDirectionRef];

    [EXIFDictionary setValue:@"xml_user_comment" forKey:(NSString *)kCGImagePropertyExifUserComment];
    //add our modified EXIF data back into the image’s metadata
    [metadataAsMutable setObject:EXIFDictionary forKey:(NSString *)kCGImagePropertyExifDictionary];
    [metadataAsMutable setObject:GPSDictionary forKey:(NSString *)kCGImagePropertyGPSDictionary];

    CFStringRef UTI = CGImageSourceGetType(source);
    NSMutableData *dest_data = [NSMutableData data];

    CGImageDestinationRef destination = CGImageDestinationCreateWithData((CFMutableDataRef) dest_data, UTI, 1, NULL);

    if(!destination)
    {
        NSLog(@"--------- Could not create image destination---------");
    }


    CGImageDestinationAddImageFromSource(destination, source, 0, (CFDictionaryRef) metadataAsMutable);

    BOOL success = NO;
    success = CGImageDestinationFinalize(destination);

    if(!success)
    {
        NSLog(@"-------- could not create data from image destination----------");
    }

    UIImage * image1 = [[UIImage alloc] initWithData:dest_data];
    UIImageWriteToSavedPhotosAlbum (image1, self, nil, nil);    
}

親切に、私がこれをして何か前向きなことをするのを手伝ってください。最後の行を見てください。メタデータを含む画像を保存していますか?その時点で画像は保存されていますが、追加しているメタデータは保存されていません。

前もって感謝します。

15
Sid

関数:UIImageWriteToSavePhotosAlbumは画像データのみを書き込みます。

ALAssetsLibrary を読む必要があります

最終的に呼び出したいメソッドは次のとおりです。

 ALAssetsLibrary *library = [[ALAssetsLibrary alloc]
 [library writeImageToSavedPhotosAlbum:metadata:completionBlock];
7
Rayfleck

Appleは、この問題に対処する記事を更新しました(Technical Q&A QA1622)。古いバージョンのXcodeを使用している場合でも、多かれ少なかれ、頑張って、画像データの低レベルの解析なしではこれを行うことができないという記事があるかもしれません。

https://developer.Apple.com/library/ios/#qa/qa1622/_index.html

そこでコードを次のように適合させました。

- (void) saveImage:(UIImage *)imageToSave withInfo:(NSDictionary *)info
{
    // Get the assets library
    ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];

    // Get the image metadata (EXIF & TIFF)
    NSMutableDictionary * imageMetadata = [[info objectForKey:UIImagePickerControllerMediaMetadata] mutableCopy];

    // add GPS data
    CLLocation * loc = <•••>; // need a location here
    if ( loc ) {
        [imageMetadata setObject:[self gpsDictionaryForLocation:loc] forKey:(NSString*)kCGImagePropertyGPSDictionary];
    }

    ALAssetsLibraryWriteImageCompletionBlock imageWriteCompletionBlock =
    ^(NSURL *newURL, NSError *error) {
        if (error) {
            NSLog( @"Error writing image with metadata to Photo Library: %@", error );
        } else {
            NSLog( @"Wrote image %@ with metadata %@ to Photo Library",newURL,imageMetadata);
        }
    };

    // Save the new image to the Camera Roll
    [library writeImageToSavedPhotosAlbum:[imageToSave CGImage] 
                                 metadata:imageMetadata 
                          completionBlock:imageWriteCompletionBlock];
    [imageMetadata release];
    [library release];
}

そして私はこれをから呼びます

imagePickerController:didFinishPickingMediaWithInfo:

これは、イメージピッカーのデリゲートメソッドです。

ヘルパーメソッド( GusUtils から採用)を使用して、次の場所からGPSメタデータディクショナリを構築します。

- (NSDictionary *) gpsDictionaryForLocation:(CLLocation *)location
{
    CLLocationDegrees exifLatitude  = location.coordinate.latitude;
    CLLocationDegrees exifLongitude = location.coordinate.longitude;

    NSString * latRef;
    NSString * longRef;
    if (exifLatitude < 0.0) {
        exifLatitude = exifLatitude * -1.0f;
        latRef = @"S";
    } else {
        latRef = @"N";
    }

    if (exifLongitude < 0.0) {
        exifLongitude = exifLongitude * -1.0f;
        longRef = @"W";
    } else {
        longRef = @"E";
    }

    NSMutableDictionary *locDict = [[NSMutableDictionary alloc] init];

    [locDict setObject:location.timestamp forKey:(NSString*)kCGImagePropertyGPSTimeStamp];
    [locDict setObject:latRef forKey:(NSString*)kCGImagePropertyGPSLatitudeRef];
    [locDict setObject:[NSNumber numberWithFloat:exifLatitude] forKey:(NSString *)kCGImagePropertyGPSLatitude];
    [locDict setObject:longRef forKey:(NSString*)kCGImagePropertyGPSLongitudeRef];
    [locDict setObject:[NSNumber numberWithFloat:exifLongitude] forKey:(NSString *)kCGImagePropertyGPSLongitude];
    [locDict setObject:[NSNumber numberWithFloat:location.horizontalAccuracy] forKey:(NSString*)kCGImagePropertyGPSDOP];
    [locDict setObject:[NSNumber numberWithFloat:location.altitude] forKey:(NSString*)kCGImagePropertyGPSAltitude];

    return [locDict autorelease];

}

これまでのところ、これはiOS4およびiOS5デバイスでうまく機能しています。

Update:およびiOS6/iOS7デバイス。このコードを使用して簡単なプロジェクトを作成しました。

https://github.com/5teev/MetaPhotoSave

13
Code Roadie

アプリのカメラで写真を撮り、GPSメタデータを使用して画像ファイルをカメラロールに保存しようとしている人のために、SwiftソリューションPhotos API を使用するALAssetsLibrary はiOS 9.0で廃止されたため.

これについてricksterが述べたように answer 、Photos APIはnot位置データをJPG画像ファイルに直接埋め込みません。新しいアセットの.locationプロパティを設定します。

CMSampleBufferサンプルバッファbuffer、CLLocation locationが与えられ、Mortyの suggestion を使用してCMSetAttachmentsを使用すると、画像の重複を回避できます。以下をせよ。 CLLocationを拡張するgpsMetadataメソッドは ここ にあります。

if let location = location {
    // Get the existing metadata dictionary (if there is one)
    var metaDict = CMCopyDictionaryOfAttachments(nil, buffer, kCMAttachmentMode_ShouldPropagate) as? Dictionary<String, Any> ?? [:]

    // Append the GPS metadata to the existing metadata
    metaDict[kCGImagePropertyGPSDictionary as String] = location.gpsMetadata()

    // Save the new metadata back to the buffer without duplicating any data
    CMSetAttachments(buffer, metaDict as CFDictionary, kCMAttachmentMode_ShouldPropagate)
}

// Get JPG image Data from the buffer
guard let imageData = AVCaptureStillImageOutput.jpegStillImageNSDataRepresentation(buffer) else {
    // There was a problem; handle it here
}

// Now save this image to the Camera Roll (will save with GPS metadata embedded in the file)
self.savePhoto(withData: imageData, completion: completion)

savePhotoメソッドは以下のとおりです。便利なaddResource:with:data:optionsメソッドはiOS9でのみ使用できます。以前のiOSをサポートしていて、Photos APIを使用する場合、GPSが必要な場合は、一時ファイルを作成してから、そのURLのファイルからアセットを作成する必要があります。適切に埋め込まれたメタデータ(PHAssetChangeRequest.creationRequestForAssetFromImage:atFileURL)。 PHAssetの.locationを設定するだけでは、新しいメタデータは実際のファイル自体に埋め込まれません。

func savePhoto(withData data: Data, completion: (() -> Void)? = nil) {
    // Note that using the Photos API .location property on a request does NOT embed GPS metadata into the image file itself
    PHPhotoLibrary.shared().performChanges({
      if #available(iOS 9.0, *) {
        // For iOS 9+ we can skip the temporary file step and write the image data from the buffer directly to an asset
        let request = PHAssetCreationRequest.forAsset()
        request.addResource(with: PHAssetResourceType.photo, data: data, options: nil)
        request.creationDate = Date()
      } else {
        // Fallback on earlier versions; write a temporary file and then add this file to the Camera Roll using the Photos API
        let tmpURL = URL(fileURLWithPath: NSTemporaryDirectory(), isDirectory: true).appendingPathComponent("tempPhoto").appendingPathExtension("jpg")
        do {
          try data.write(to: tmpURL)

          let request = PHAssetChangeRequest.creationRequestForAssetFromImage(atFileURL: tmpURL)
          request?.creationDate = Date()
        } catch {
          // Error writing the data; photo is not appended to the camera roll
        }
      }
    }, completionHandler: { _ in
      DispatchQueue.main.async {
        completion?()
      }
    })
  }

余談ですが、GPSメタデータを含む画像を(カメラロール/写真ライブラリではなく)一時ファイルまたはドキュメントに保存するだけの場合は、Photos APIの使用をスキップして、imageDataをURLに直接書き込むことができます。

// Write photo to temporary files with the GPS metadata embedded in the file
let tmpURL = URL(fileURLWithPath: NSTemporaryDirectory(), isDirectory: true).appendingPathComponent("tempPhoto").appendingPathExtension("jpg")
do {
    try data.write(to: tmpURL)

    // Do more work here...
} catch {
    // Error writing the data; handle it here
}
4
Undrea

これには、GPSメタデータの生成が含まれます。これを行うためのCLLocationのカテゴリは次のとおりです。

https://Gist.github.com/phildow/6043486

2
Philip

アプリケーション内のカムキャプチャ画像からメタデータを取得する:

UIImage *pTakenImage= [info objectForKey:@"UIImagePickerControllerOriginalImage"];

NSMutableDictionary *imageMetadata = [[NSMutableDictionary alloc] initWithDictionary:[info objectForKey:UIImagePickerControllerMediaMetadata]];

抽出されたメタデータを使用して画像をライブラリに保存します。

ALAssetsLibrary* library = [[ALAssetsLibrary alloc] init];
[library writeImageToSavedPhotosAlbum:[sourceImage CGImage] metadata:imageMetadata completionBlock:Nil];
[library release];

またはローカルディレクトリに保存したい

CGImageDestinationAddImageFromSource(destinationPath,sourceImage,0, (CFDictionaryRef)imageMetadata);
2
Usman Nisar

私たちが解決しようとしている問題は、ユーザーがUIImagePickerControllerカメラで写真を撮ったところです。取得するのはUIImageです。 AssetsLibraryフレームワークがないので、メタデータをカメラロール(写真ライブラリ)に保存するときに、メタデータをそのUIImageにどのように折りたたむのですか?

答えは(私が理解できる限り)、ImageIOフレームワークを使用することです。 UIImageからJPEGデータを抽出し、それをソースとして使用して、それとメタデータディクショナリを宛先に書き込み、宛先データをPHAssetとしてカメラロールに保存します。

この例では、imはUIImageであり、metaはメタデータディクショナリです。

let jpeg = UIImageJPEGRepresentation(im, 1)!
let src = CGImageSourceCreateWithData(jpeg as CFData, nil)!
let data = NSMutableData()
let uti = CGImageSourceGetType(src)!
let dest = CGImageDestinationCreateWithData(data as CFMutableData, uti, 1, nil)!
CGImageDestinationAddImageFromSource(dest, src, 0, meta)
CGImageDestinationFinalize(dest)
let lib = PHPhotoLibrary.shared()
lib.performChanges({
    let req = PHAssetCreationRequest.forAsset()
    req.addResource(with: .photo, data: data as Data, options: nil)
})

テストする良い方法(そして一般的な使用例)は、UIImagePickerControllerデリゲートinfoディクショナリからUIImagePickerControllerMediaMetadataキーを介して写真メタデータを受け取り、PHAssetに折りたたんで保存することです。フォトライブラリ。

1
matt

画像とメタデータを扱う多くのフレームワークがあります。

Assets Frameworkは非推奨になり、PhotosLibraryフレームワークに置き換えられました。写真をキャプチャするためにAVCapturePhotoCaptureDelegateを実装した場合は、次のように実行できます。

func photoOutput(_ output: AVCapturePhotoOutput, didFinishProcessingPhoto photo: AVCapturePhoto, error: Error?) {
    var metadata = photo.metadata
    metadata[kCGImagePropertyGPSDictionary as String] = gpsMetadata
    photoData = photo.fileDataRepresentation(withReplacementMetadata: metadata,
      replacementEmbeddedThumbnailPhotoFormat: photo.embeddedThumbnailPhotoFormat,
      replacementEmbeddedThumbnailPixelBuffer: nil,
      replacementDepthData: photo.depthData)
    ...
}

メタデータは辞書の辞書であり、 CGImageProperties を参照する必要があります。

私はこのトピックについて書きました ここ

1
samwize

これは@matt回答のわずかなバリエーションです。

次のコードは1つのCGImageDestinationのみを使用し、さらに興味深いことに、iOS11 +でHEIC形式で保存できます。

画像を追加する前に、圧縮品質がメタデータに追加されていることに注意してください。 0.8は、ネイティブカメラセーブの圧縮品質とほぼ同じです。

//img is the UIImage and metadata the metadata received from the picker
NSMutableDictionary *meta_plus = metadata.mutableCopy;
//with CGimage, one can set compression quality in metadata
meta_plus[(NSString *)kCGImageDestinationLossyCompressionQuality] = @(0.8);
NSMutableData *img_data = [NSMutableData new];
NSString *type;
if (@available(iOS 11.0, *)) type = AVFileTypeHEIC;
else type = @"public.jpeg";
CGImageDestinationRef dest = CGImageDestinationCreateWithData((__bridge CFMutableDataRef)img_data, (__bridge CFStringRef)type, 1, nil);
CGImageDestinationAddImage(dest, img.CGImage, (__bridge CFDictionaryRef)meta_plus);
CGImageDestinationFinalize(dest);
CFRelease(dest); //image is in img_data
//go for the PHLibrary change request
0
Max_B