Android - 比较缩略图位图和普通图像位图

时间:2016-12-06 11:21:21

标签: android bitmap

imageView.buildDrawingCache();
Bitmap bmap = imageView.getDrawingCache();
Bitmap thumbImage = ThumbnailUtils.extractThumbnail(bmap, 44, 44);

如何比较bmap和thumbImage并找到哪一个是缩略图和一个正常? 提前谢谢!

1 个答案:

答案 0 :(得分:0)

查看extractThumbnail代码

只是缩放位图。

matrix.setScale(scale, scale);
Bitmap thumbnail = transform(matrix, source, width, height,OPTIONS_SCALE_UP | options);
return thumbnail;

所以我的建议是检查您要比较或检查的图片上的getWidth()getHeight()