web-dev-qa-db-ja.com

XMPを解釈する-ALAssetRepresentationのメタデータ

ユーザーがiOSの組み込みPhotos.appの写真にいくつかの変更(トリミング、赤目除去など)を行った場合、その変更は、対応するによって返されるfullResolutionImageには適用されません。 ALAssetRepresentation

ただし、変更は、thumbnailによって返されるfullScreenImageおよびALAssetRepresentationに適用されます。さらに、適用された変更に関する情報は、キー@"AdjustmentXMP"を介してALAssetRepresentationのメタデータディクショナリにあります。

一貫性を保つために、これらの変更をfullResolutionImageに自分で適用したいと思います。 iOS6 +CIFilterfilterArrayFromSerializedXMP: inputImageExtent:error:で、このXMPメタデータをCIFilterの配列に変換できることがわかりました。

ALAssetRepresentation *rep; 
NSString *xmpString = rep.metadata[@"AdjustmentXMP"];
NSData *xmpData = [xmpString dataUsingEncoding:NSUTF8StringEncoding];

CIImage *image = [CIImage imageWithCGImage:rep.fullResolutionImage];

NSError *error = nil;
NSArray *filterArray = [CIFilter filterArrayFromSerializedXMP:xmpData 
                                             inputImageExtent:image.extent 
                                                        error:&error];
if (error) {
     NSLog(@"Error during CIFilter creation: %@", [error localizedDescription]);
}

CIContext *context = [CIContext contextWithOptions:nil];

for (CIFilter *filter in filterArray) {
     [filter setValue:image forKey:kCIInputImageKey];
     image = [filter outputImage];
}

ただし、これは一部のフィルター(トリミング、自動拡張)でのみ機能し、赤目除去などの他のフィルターでは機能しません。このような場合、CIFiltersには目に見える影響はありません。したがって、私の質問:

  • 赤目除去を作成する方法を知っている人はいますかCIFilter? (Photos.appと一致する方法で。キーkCIImageAutoAdjustRedEyeのフィルターでは不十分です。たとえば、目の位置のパラメーターを取りません。)
  • IOS 5でこれらのフィルターを生成して適用する可能性はありますか?
95
andreas
ALAssetRepresentation* representation = [[self assetAtIndex:index] defaultRepresentation];

// Create a buffer to hold the data for the asset's image
uint8_t *buffer = (Byte*)malloc(representation.size); // Copy the data from the asset into the buffer
NSUInteger length = [representation getBytes:buffer fromOffset: 0.0  length:representation.size error:nil];

if (length==0)
    return nil;

// Convert the buffer into a NSData object, and free the buffer after.

NSData *adata = [[NSData alloc] initWithBytesNoCopy:buffer length:representation.size freeWhenDone:YES];

// Set up a dictionary with a UTI hint. The UTI hint identifies the type
// of image we are dealing with (that is, a jpeg, png, or a possible
// RAW file).

// Specify the source hint.

NSDictionary* sourceOptionsDict = [NSDictionary dictionaryWithObjectsAndKeys:

(id)[representation UTI], kCGImageSourceTypeIdentifierHint, nil];

// Create a CGImageSource with the NSData. A image source can
// contain x number of thumbnails and full images.

CGImageSourceRef sourceRef = CGImageSourceCreateWithData((CFDataRef) adata,  (CFDictionaryRef) sourceOptionsDict);

[adata release];

CFDictionaryRef imagePropertiesDictionary;

// Get a copy of the image properties from the CGImageSourceRef.

imagePropertiesDictionary = CGImageSourceCopyPropertiesAtIndex(sourceRef,0, NULL);

CFNumberRef imageWidth = (CFNumberRef)CFDictionaryGetValue(imagePropertiesDictionary, kCGImagePropertyPixelWidth);

CFNumberRef imageHeight = (CFNumberRef)CFDictionaryGetValue(imagePropertiesDictionary, kCGImagePropertyPixelHeight);

int w = 0;

int h = 0;

CFNumberGetValue(imageWidth, kCFNumberIntType, &w);

CFNumberGetValue(imageHeight, kCFNumberIntType, &h);

// Clean up memory

CFRelease(imagePropertiesDictionary);
2
Yash Golwara