问题
问题简述: 使用SDWebImage下载图片保存到相册变大,原本8M图片保存后变成20M.
问题代码:
首先是使用SDWebImage的- (id
方法进行下载图片
NSURL *imageURL = [NSURL URLWithString:@"http://upload-images.jianshu.io/upload_images/259-7424a9a21a2cb81b.jpg"];
[[SDWebImageManager sharedManager]downloadImageWithURL:imageURL options:SDWebImageLowPriority progress:^(NSInteger receivedSize, NSInteger expectedSize) {
//此处是下载过程中的回调 expectedSize:总大小 receivedSize:当前已下载大小
NSLog(@"expectedSize:%.2fM", expectedSize/1024/1024.0);
} completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
//下载完成的回调
[self.imageView setImage:image];
//保存SDWebImage下载的图片存到指定路径
NSData *imageData = UIImagePNGRepresentation(image);
NSLog(@"imageData.length:%.2fM", imageData.length/1024/1024.0);
[UIImagePNGRepresentation(image) writeToFile:_imageModel.imagePath atomically:YES];
}];
保存图片到本地后,在适当场景触发保存图片到手机相册,保存到相册使用的是PHPhotoLibrary
的creationRequestForAssetFromImage
保存到相册方法如下:
- (void)loadImageFinished {
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
//写入图片到相册
UIImage *image = [UIImage imageWithContentsOfFile:_imageModel.imagePath];
[PHAssetChangeRequest creationRequestForAssetFromImage:image];
} completionHandler:^(BOOL success, NSError * _Nullable error) {
//保存成功
}];
}
也可以使用
UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
方法来保存图片到相册,效果是一样的,都会变大
整个一套下载保存的逻辑是没有问题的,可以完成保存,在相册也可以看到,但是当你再次看相册中文件的大小时,你会发现图片变大了
问题分析
不想看分析的可以直接跳到下一章 解决方法 看具体的解决方案
经过调试发现,在使用SDWebImage 方法下载图片时,下载中回调的block打印的expectedSize(图片总大小)的大小和下载完成回调的block打印的imageData.length的大小不一致,imageData.length偏大。
而下载完成后直接看沙盒中SDWebImage 存储的图片大小是正确的,
也就是说问题出在下载完成后将image存到指定路径的过程中。
经Google发现将文件转成UIImage 再转成NSData ,这个过程会使图片变大。
解决方法
解决方法就是不使用SDWebImage 下载完成block返回的UIImage,而是直接找到SDWebImage下载后的文件转成NSData存储到指定路径。
在存储图片到相册的过程中也摒弃使用UIImage存储,使用PHPhotoLibrary
中的creationRequestForAssetFromImageAtFileURL:
方法,可以使用NSURL来存储,而NSURL可以由文件路径来初始化。
代码如下
下载代码:
NSURL *imageURL = [NSURL URLWithString:@"http://upload-images.jianshu.io/upload_images/259-7424a9a21a2cb81b.jpg"];
[[SDWebImageManager sharedManager]downloadImageWithURL:imageURL options:SDWebImageLowPriority progress:^(NSInteger receivedSize, NSInteger expectedSize) {
//此处是下载过程中的回调 expectedSize:总大小 receivedSize:当前已下载大小
NSLog(@"expectedSize:%.2fM", expectedSize/1024/1024.0);
} completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
//下载完成的回调
[self.imageView setImage:image];
//保存SDWebImage下载的图片存到指定路径
if (finished) {
//此处一定要延时之行才可以
[self performSelector:@selector(saveImageWithURL:) withObject: imageURL afterDelay:1];
}
}];
保存图片存到指定路径 的代码
//保存SDWebImage下载的图片存到指定路径
- (void)saveImageWithURL:(NSURL *)imageURL {
if ([_imageModel.thumbUrl rangeOfString:_imageModel.originalImageUrl].location!=NSNotFound) {
//根据下载URL获取图片在SDWebImage中存储对应的key
NSString *key = [[SDWebImageManager sharedManager] cacheKeyForURL:imageURL];
//根据key获取到对应图片的存储路径
NSString *imagePath = [[SDWebImageManager sharedManager].imageCache defaultCachePathForKey:key];
//根据路径直接获取NSData数据
NSData *imageData = [NSData dataWithContentsOfFile:imagePath];
NSLog(@"imageData.length:%.2fM", imageData.length/1024/1024.0);
//将NSData数据存储到指定路径
[imageData writeToFile:_imageModel.originalImagePath atomically:YES];
}
}
保存图片到相册的代码
//保存图片到相册
- (void)loadImageFinished {
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
//写入图片到相册
NSString *pathStr = _imageModel.imagePath;
NSURL *imageUrl = [NSURL fileURLWithPath:pathStr];
[PHAssetChangeRequest creationRequestForAssetFromImageAtFileURL:imageUrl];
} completionHandler:^(BOOL success, NSError * _Nullable error) {
//保存完成
}];
}