我想将alasset imagearray直接保存到带EXIF的文档目录 我尝试过PNG转换,jpeg转换没什么用 它只是用jpg或png(丢失exif)创建新图像
我已经看到一些时间将NSData Directly直接保存到文件夹以保存EXIF不知道如何
我从
获取ALAsset对象结果的元数据NSDictionary *metadata = [[result defaultRepresentation] metadata];
另一个包含所有图像列表的资产数组
ALAssetsGroupEnumerationResultsBlock assetEnumerator = ^(ALAsset *result, NSUInteger index, BOOL *stop) {
if(result != NULL) {
[assets addObject:result];
;
NSLog(@"assets %i",[assets count]);
self.progressView.progress = (float)index / ([assets count]-1);
}
将图像保存到文档目录文件夹
-(void)saveImagesToDocumentDirectory{
NSLog(@"assets count %i",[assets count]);
for(int i=0;i<[assets count];i++)
{
currentImage = [UIImage imageWithCGImage:[[[assets objectAtIndex:i] defaultRepresentation] fullResolutionImage]];
[self saveImage:currentImage withImageName:[NSString stringWithFormat:@"Images %d",i]];
} }
- (void)saveImage:(UIImage*)image withImageName:(NSString*)imageName {
NSData *imageData = UIImagePNGRepresentation(image); //convert image into .png format.
// NSData *imageData = UIImageJPEGRepresentation(image,1.0);
NSFileManager *fileManager = [NSFileManager defaultManager];//create instance of NSFileManager
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); //create an array and store result of our search for the documents directory in it
NSString *documentsDirectory = [paths objectAtIndex:0]; //create NSString object, that holds our exact path to the documents directory
NSString *dataPath = [documentsDirectory stringByAppendingPathComponent:@"MyFolder"];
NSString *fullPath = [dataPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.png", imageName]]; //add our image to the path
[fileManager createFileAtPath:fullPath contents:imageData attributes:nil]; //finally save the path (image)
NSLog(@"image saved");
}
答案 0 :(得分:1)
这是我能够在我的文档目录文件夹中写入所有图像的方法,exif保持不变,希望这会有助于其他用户
-(void)writingOutImage{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0]; // Get documents folder
NSString *documentdataPath = [documentsDirectory stringByAppendingPathComponent:@"MyFolder"];
NSLog(@"documentdataPath %@",documentdataPath);
for (int j=0; j<[assets count]; j++) {
ALAssetRepresentation *representation = [[assets objectAtIndex:j] defaultRepresentation];
NSString* filename = [documentdataPath stringByAppendingPathComponent:[representation filename]];
[[NSFileManager defaultManager] createFileAtPath:filename contents:nil attributes:nil];
NSOutputStream *outPutStream = [NSOutputStream outputStreamToFileAtPath:filename append:YES];
[outPutStream open];
long long offset = 0;
long long bytesRead = 0;
NSError *error;
uint8_t * buffer = malloc(131072);
while (offset<[representation size] && [outPutStream hasSpaceAvailable]) {
bytesRead = [representation getBytes:buffer fromOffset:offset length:131072 error:&error];
[outPutStream write:buffer maxLength:bytesRead];
offset = offset+bytesRead;
}
[outPutStream close];
free(buffer);
}
}