iOS照片缩略图thumbnail模糊问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS照片缩略图thumbnail模糊问题相关的知识,希望对你有一定的参考价值。

使用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模糊问题的主要内容,如果未能解决你的问题,请参考以下文章

图片压缩工具Thumbnailator的使用

java使用Thumbnailator操作图片

实现图片加载从模糊到清晰显示的方法

Java生成缩略图之Thumbnailator

有没有办法获得非平方的 ALAsset 缩略图?

Thumbnailator java 图片处理技术