码迷,mamicode.com
首页 > 移动开发 > 详细

iOS照片缩略图thumbnail模糊问题

时间:2016-02-29 16:17:47      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

使用ALAsset获取图片的缩略图,一般都有模糊的问题

[_imageView setImage:[UIImage imageWithCGImage:asset.thumbnail]];

技术分享

 

对于这种问题,比较简单的修改方法是使用

[_imageView setImage:[UIImage imageWithCGImage:asset.aspectRatioThumbnail]];

aspectRatioThumbnail获取的是原始照片的缩略图,而不是方图。直接使用的话会出问题

技术分享

可以看到图片都被拉伸了,比例不协调。可以使之自适应

_imageView=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, kThumbnailSize.width, kThumbnailSize.height)];
_imageView.contentMode = UIViewContentModeScaleAspectFill;

这时为

技术分享

 

发现图片比例没失调,但格局混乱。这时直接想到的就是对图片进行裁剪,使之大小合适。但还有种更简单的方法,使用遮罩

_imageView=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, kThumbnailSize.width, kThumbnailSize.height)];
_imageView.contentMode = UIViewContentModeScaleAspectFill;
_imageView.layer.masksToBounds = YES;

这就能实现类似裁剪的功能,完美解决。

技术分享

 

iOS照片缩略图thumbnail模糊问题

标签:

原文地址:http://www.cnblogs.com/Apologize/p/5227400.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!