iOS 加载加载图片的方式主流的有两种(本地图片略过):
1、SDWebImage。
2、YYWebImage。
区别:主流框架主要使用SDWebImage进行处理图片,这点不用说明,但是SDWebImage在处理Gif的时候不是很友好,在github上SDWebImage 是这样说明的,需要额外pod 'SDWebImage/Gif'.
附上地址:FLAnimatedImage
FLAnimatedImage 加载网络GIF方法:
cell.icon1.animatedImage =[[FLAnimatedImage alloc]initWithAnimatedGIFData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://images2015.cnblogs.com/blog/607542/201601/607542-20160123090832343-133952004.gif"]]];
icon 的类型是FLAnimatedImageView
;
所以看得出来SDWebImage在支持Gif处理不是很好。
接下来简单介绍一下YYWebImage:
YYWebImage 是一个异步图片加载框架 (YYKit 组件之一).
其设计目的是试图替代 SDWebImage、PINRemoteImage、FLAnimatedImage 等开源框架,它支持这些开源框架的大部分功能,同时增加了大量新特性、并且有不小的性能提升。
它底层用 YYCache 实现了内存和磁盘缓存, 用 YYImage 实现了 WebP/APNG/GIF 动图的解码和播放。你可以查看这些项目以获得更多信息。
异步的图片加载,支持 HTTP 和本地文件。
支持 GIF、APNG、WebP 动画(动态缓存,低内存占用)。
支持逐行扫描、隔行扫描、渐进式图像加载。
UIImageView、UIButton、MKAnnotationView、CALayer 的 Category 方法支持。
常见图片处理:模糊、圆角、大小调整、裁切、旋转、色调等。
高性能的内存和磁盘缓存。
高性能的图片设置方式,以避免主线程阻塞。
每个类和方法都有完善的文档注释。
从 URL 加载图片:
// 加载网络图片
imageView.yy_imageURL = [NSURL URLWithString:@"http://github.com/logo.png"];
// 加载本地图片
imageView.yy_imageURL = [NSURL fileURLWithPath:@"/tmp/logo.png"];
加载动图
// 只需要把 `UIImageView` 替换为 `YYAnimatedImageView` 即可。
UIImageView *imageView = [YYAnimatedImageView new];
imageView.yy_imageURL = [NSURL URLWithString:@"http://github.com/ani.webp"];
渐进式图片加载
// 渐进式:边下载边显示
[imageView yy_setImageWithURL:url options:YYWebImageOptionProgressive];
// 渐进式加载,增加模糊效果和渐变动画 (见本页最上方的GIF演示)
[imageView yy_setImageWithURL:url options:YYWebImageOptionProgressiveBlur | YYWebImageOptionSetImageWithFadeAnimation];
加载、处理图片
// 1. 下载图片
// 2. 获得图片下载进度
// 3. 调整图片大小、加圆角
// 4. 显示图片时增加一个淡入动画,以获得更好的用户体验
[imageView yy_setImageWithURL:url
placeholder:nil
options:YYWebImageOptionSetImageWithFadeAnimation
progress:^(NSInteger receivedSize, NSInteger expectedSize) {
progress = (float)receivedSize / expectedSize;
}
transform:^UIImage *(UIImage *image, NSURL *url) {
image = [image yy_imageByResizeToSize:CGSizeMake(100, 100) contentMode:UIViewContentModeCenter];
return [image yy_imageByRoundCornerRadius:10];
}
completion:^(UIImage *image, NSURL *url, YYWebImageFromType from, YYWebImageStage stage, NSError *error) {
if (from == YYWebImageFromDiskCache) {
NSLog(@"load from disk cache");
}
}];
图片缓存
YYImageCache *cache = [YYWebImageManager sharedManager].cache;
// 获取缓存大小
cache.memoryCache.totalCost;
cache.memoryCache.totalCount;
cache.diskCache.totalCost;
cache.diskCache.totalCount;
// 清空缓存
[cache.memoryCache removeAllObjects];
[cache.diskCache removeAllObjects];
// 清空磁盘缓存,带进度回调
[cache.diskCache removeAllObjectsWithProgressBlock:^(int removedCount, int totalCount) {
// progress
} endBlock:^(BOOL error) {
// end
}];
关于YYWebImage 加载GIF补充一点,如果是加载本地Gif:
YYImage *image = [YYImage imageNamed:name]; YYAnimatedImageView *imageView = [[YYAnimatedImageView alloc] initWithImage:image];
加载网络Gif:
简单介绍两种:
1、同步方法,会卡顿(FLAnimatedImage在处理的时候卡顿会好很多,很流畅)。
imageView.yy_imageURL = [NSURL URLWithString:@"http://upload-images.jianshu.io/upload_images/1694376-b9646eecf2139f87.gif"];
2、异步方法:
imageView yy_setImageWithURL:[NSURL URLWithString:@"http://i.imgur.com/8KHKhxI.gif"]
placeholder:nil
options:YYWebImageOptionProgressiveBlur | YYWebImageOptionShowNetworkActivity | YYWebImageOptionSetImageWithFadeAnimation
progress:^(NSInteger receivedSize, NSInteger expectedSize) {
if (expectedSize > 0 && receivedSize > 0) {
}
}
transform:nil
completion:^(UIImage *image, NSURL *url, YYWebImageFromType from, YYWebImageStage stage, NSError *error) {
NSLog(@"%ld",stage);
}];
`
总结:
1、单独加载网络图片SDWebImage基本符合常用需求。
2、FLAnimatedImage在处理Gif的时候很流畅。至于SDWebImage配合FLAnimatedImage暂时没有发现,官网demo的事例可以参考一下。FLAnimatedImage到是可以单独加载Gif。
3、YYWebImage 可以加载网络图片以及良好的支持Gif,可以自定义多种过渡效果。