tools tool site official gui forense exiftool descargar ios ios6 alassetslibrary cifilter ciimage

ios - site - exit tool download



Interpretar XMP-Metadata en ALAsRepresentation (1)

Cuando un usuario realiza algunos cambios (recorte, eliminación de ojos rojos, ...) a las fotos en el Photos.app incorporado en iOS, los cambios no se aplican a la fullResolutionImage devuelta por la ALAssetRepresentation correspondiente.

Sin embargo, los cambios se aplican a la thumbnail y a la fullScreenImage devuelta por ALAssetRepresentation . Además, la información sobre los cambios aplicados se puede encontrar en el diccionario de metadatos de ALAssetRepresentation través de la clave @"AdjustmentXMP" .

Me gustaría aplicar estos cambios a la fullResolutionImage yo mismo para preservar la coherencia. Descubrí que en el filtroArrayFromSerializedXMP de iOS6 + CIFilter filterArrayFromSerializedXMP: inputImageExtent:error: puede convertir este metadato XMP en una matriz de 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]; }

Sin embargo, esto funciona solo para algunos filtros (recorte, auto-mejora) pero no para otros como eliminación de ojos rojos. En estos casos, los CIFilter s no tienen efecto visible. Por lo tanto, mis preguntas:

  • ¿Alguien conoce una forma de crear CIFilter eliminar los ojos CIFilter ? (De manera consistente con Photos.app. El filtro con la clave kCIImageAutoAdjustRedEye no es suficiente. Por ejemplo, no toma parámetros para la posición de los ojos).
  • ¿Existe la posibilidad de generar y aplicar estos filtros en iOS 5?

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