方法一:UIKit提供的便利方法
首先保存圖片到系統(tǒng)相冊UIKit提供了一種很簡單的方法猾担,一句話就搞定。但如果想要取得剛剛保存的地址就沒辦法了秤朗。
UIImageWriteToSavedPhotosAlbum(
UIImage * _Nonnull image,
id _Nullable completionTarget,
SEL _Nullable completionSelector,
void * _Nullable contextInfo
);
- 各參數說明:
image 為需要保存的圖片對象,id是target對象圃验,sel是selector鲁猩,即target對象上的方法名腾供,contextInfo是任意指針,會傳遞到selector定義的方法上遮怜。一般是當完成后調用方法時使用淋袖,或者在完成時出錯的處理。
方法二:photoKit來保存
假如現在場景是:調用系統(tǒng)相機拍下一張照片奈泪,準備保存到系統(tǒng)相機膠卷适贸,并獲取到圖片信息
灸芳。此時我們需要通過photoKit來保存,
// 保存相片到相機膠卷
NSError *error1 = nil;
__block PHObjectPlaceholder *createdAsset = nil;
[[PHPhotoLibrary sharedPhotoLibrary] performChangesAndWait:^{
createdAsset = [PHAssetCreationRequest creationRequestForAssetFromImage:image].placeholderForCreatedAsset;
} error:&error1];
接下來我們需要去獲取剛剛保存到的圖片拜姿,本人的基本思路是先拿到相機膠卷的所有照片
烙样,并拿到相機膠卷這個相冊中的所有PHAsset對象
,又由于我們剛剛保存的圖片是存放在最后一張的,所以只需要拿數組內的最后一張照片的PHAsset對象
蕊肥。最后再通過最后一個PHAsset對象(剛剛保存的照片)獲取圖片信息
谒获。
/** 最后一張照片為剛剛拍照傳上去的 */
PHAsset *PHasset = [allPhots lastObject];
這里仔細講一下根據PHAsset獲取圖片信息中的[PHCachingImageManager defaultManager] requestImageForAsset
,本人在這里遇到一點坑。詳細請參照iOS獲取圖像的方式和坑點
#pragma mark - < 根據PHAsset獲取圖片信息 >
- (void)accessToImageAccordingToTheAsset:(PHAsset *)asset size:(CGSize)size resizeMode:(PHImageRequestOptionsResizeMode)resizeMode completion:(void(^)(UIImage *image,NSDictionary *info))completion
{
static PHImageRequestID requestID = -1;
CGFloat scale = [UIScreen mainScreen].scale;
CGFloat width = MIN([UIScreen mainScreen].bounds.size.width, 500);
if (requestID >= 1 && size.width / width == scale) {
[[PHCachingImageManager defaultManager] cancelImageRequest:requestID];
}
PHImageRequestOptions *option = [[PHImageRequestOptions alloc] init];
option.deliveryMode = PHImageRequestOptionsDeliveryModeOpportunistic;
// option.resizeMode = PHImageRequestOptionsResizeModeFast;
option.resizeMode = resizeMode;
requestID = [[PHCachingImageManager defaultManager] requestImageForAsset:asset targetSize:size contentMode:PHImageContentModeAspectFill options:option resultHandler:^(UIImage * _Nullable result, NSDictionary * _Nullable info) {
/** 必須做判斷壁却,要不然將走多次完成的completion的block */
if (![[info objectForKey:PHImageResultIsDegradedKey] boolValue]) {
dispatch_async(dispatch_get_main_queue(), ^{
completion(result,info);
});
}
}];
}
由于本人批狱,只需要從相冊拿到我設置需要的對應尺寸的照片,但是實際上是會多次走completion的block展东,在完成這里主要解釋一下下面這個判斷:
需要注意的是赔硫,該方法在默認情況下是異步執(zhí)行的,而且 Photos 庫可能會多次執(zhí)行 resultHandler 塊盐肃,因為這種情況就是圖像需要從 iCloud 中下載的情況爪膊。在 requestImageForAsset 返回的內容中,一開始的那一次請求中會返回一個小尺寸的圖像版本砸王,當高清圖像還在下載時推盛,開發(fā)者可以首先給用戶展示這個低清的圖像版本,然后 block 在多次調用后谦铃,最終會返回高清的原圖耘成。至于當前返回的圖像是哪個版本的圖像,可以通過 block 返回的 NSDictionary info 中獲知驹闰,PHImageResultIsDegradedKey 表示當前返回的 UIImage 是低清圖瘪菌。如果需要判斷是否已經獲得高清圖,可以這樣判斷:
if (![[info objectForKey:PHImageResultIsDegradedKey] boolValue]) {
//這樣只會走一次獲取到高清圖時
dispatch_async(dispatch_get_main_queue(), ^{
completion(result,info);
});
最后將本人在拍完照后走完成代理時的詳細操作附上,至于其中獲取相冊所有圖片的方法可見本人上一篇文章:獲取相冊所有圖片
#pragma mark--uiimagepickercontroller delegate
-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info
{
CGFloat scale = [UIScreen mainScreen].scale;
if (picker.sourceType == UIImagePickerControllerSourceTypeCamera)
{
[picker dismissViewControllerAnimated:YES completion:^{
}];
UIImage *image = [info valueForKey:UIImagePickerControllerOriginalImage];
// 保存相片到相機膠卷
NSError *error1 = nil;
__block PHObjectPlaceholder *createdAsset = nil;
[[PHPhotoLibrary sharedPhotoLibrary] performChangesAndWait:^{
createdAsset = [PHAssetCreationRequest creationRequestForAssetFromImage:image].placeholderForCreatedAsset;
} error:&error1];
if (error1) {
}
else
{
NSMutableArray *allPhots = [NSMutableArray array];
// 相機膠卷
PHFetchResult *smartAlbums = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum subtype:PHAssetCollectionSubtypeAlbumRegular options:nil];
for (NSInteger i = 0; i < smartAlbums.count; i++) {
// 是否按創(chuàng)建時間排序
PHFetchOptions *option = [[PHFetchOptions alloc] init];
option.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:YES]];
option.predicate = [NSPredicate predicateWithFormat:@"mediaType == %ld", PHAssetMediaTypeImage];
PHCollection *collection = smartAlbums[i];
//遍歷獲取相冊
if ([collection isKindOfClass:[PHAssetCollection class]]) {
if ([collection.localizedTitle isEqualToString:@"相機膠卷"]) {
PHAssetCollection *assetCollection = (PHAssetCollection *)collection;
PHFetchResult *fetchResult = [PHAsset fetchAssetsInAssetCollection:assetCollection options:nil];
NSArray *assets;
if (fetchResult.count > 0) {
// 某個相冊里面的所有PHAsset對象
assets = [self getAllPhotosAssetInAblumCollection:assetCollection ascending:YES ];
[allPhots addObjectsFromArray:assets];
}
}
}
}
/** 最后一張照片為剛剛拍照傳上去的 */
PHAsset *PHasset = [allPhots lastObject];
NSString *date = [NSString stringWithFormat:@"%@",PHasset.creationDate];
PhotoModel *model = [[PhotoModel alloc]init];
model.date= date;
model.type = [NSString stringWithFormat:@"%ld",PHasset.mediaType];
/** 自帶異步 */
[self accessToImageAccordingToTheAsset:PHasset size:CGSizeMake(kMyimageSize * scale,kMyimageSize * scale) resizeMode:PHImageRequestOptionsResizeModeFast completion:^(UIImage *image, NSDictionary *info) {
model.thumbNailImage = image;
if (self.dataArray.count < 3) {
[self.dataArray addObject:model];
[self getimageView];
}else
{
if (_myHud.hidden || _myHud == nil) {
_myHud = [JGProgressHUD onlyShowMessage:@"抱歉嘹朗!暫時最多發(fā)布三張控嗜。" withHUDStyle:JGProgressHUDStyleDark inVC:self];
}
}
}];
}
}
}