Phonegap(cordova)将图像保存到自定义相册

时间:2015-04-18 10:09:41

标签: ios objective-c cordova phonegap-plugins

我对Objective-C了解不多。 我需要将图库中的图像保存到自定义名称相册,我使用Canvas2ImagePlugin但图像保存到相册相机胶卷。

Canvas2ImagePlugin使用:

UIImage* image = [[[UIImage alloc] initWithData:imageData] autorelease];    
UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);

如何在函数UIImageWriteToSavedPhotosAlbum中使用名称相册?或者使用其他功能?

1 个答案:

答案 0 :(得分:0)

其实我不了解phonegap。但我可以告诉你我们如何在ios中取得成就。在ALAssetsLibrary的帮助下,我们可以将照片存储到自定义相册中。

 [self.library saveImage:image toAlbum:@"Touch Code Magazine" withCompletionBlock:^(NSError *error) {
    if (error!=nil) {
        NSLog(@"Big error: %@", [error description]);
    }
   }];