Phonegap(cordova)将图像保存到自定义相册
Posted
技术标签:
【中文标题】Phonegap(cordova)将图像保存到自定义相册【英文标题】:Phonegap (cordova) save image to custom album 【发布时间】:2015-04-18 10:09:40 【问题描述】:我对@987654321@了解不多。
我需要将图库中的图像保存到自定义名称相册,我使用了Canvas2ImagePlugin
,但图像保存到相册相机胶卷。
Canvas2ImagePlugin
使用:
UIImage* image = [[[UIImage alloc] initWithData:imageData] autorelease];
UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
如何在函数UIImageWriteToSavedPhotosAlbum
中使用名字专辑?还是使用其他功能?
【问题讨论】:
【参考方案1】:其实我不知道phonegap
。但我可以给你提示,我们如何在ios
中实现。借助ALAssetsLibrary
,我们可以将照片存储到自定义相册中。
[self.library saveImage:image toAlbum:@"Touch Code Magazine" withCompletionBlock:^(NSError *error)
if (error!=nil)
NSLog(@"Big error: %@", [error description]);
];
【讨论】:
问题决定了。 ***.com/questions/11972185/…以上是关于Phonegap(cordova)将图像保存到自定义相册的主要内容,如果未能解决你的问题,请参考以下文章
如何从另一个应用程序将图像共享到我的 Cordova/PhoneGap 应用程序?
将使用相机拍摄的照片捕获并存储到本地数据库/PhoneGap/Cordova/iOS