我正在使用我的应用中的许多图片。在保存按钮上,我想将相关图像存储在我的照片库中。我怎样才能做到这一点?你有什么主意吗?如果是,则plz为我提供代码..
提前预订..
答案 0 :(得分:2)
这有助于将图像保存到设备的相册中。
UIImageWriteToSavedPhotosAlbum(yourImage, nil, nil, nil);
答案 1 :(得分:1)
有几种方法可以保存到照片库。处理此问题的最“现代”方式是使用ALAssetsLibrary
。
CGImageRef imageRef = myUIImage.CGImage;
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library writeImageToSavedPhotosAlbum:imageRef orientation:(ALAssetOrientation)UIImageOrientationUp completionBlock:^(NSURL *assetURL, NSError *error){
//do whatever you wish at the conclusion of the save.
}
}];
答案 2 :(得分:1)
使用以下方法将图像保存到相册
UIImageWriteToSavedPhotosAlbum(imageobj, nil, nil, nil);