imageView.buildDrawingCache();
Bitmap bmap = imageView.getDrawingCache();
Bitmap thumbImage = ThumbnailUtils.extractThumbnail(bmap, 44, 44);
如何比较bmap和thumbImage并找到哪一个是缩略图和一个正常? 提前谢谢!
答案 0 :(得分:0)
查看extractThumbnail
代码
只是缩放位图。
matrix.setScale(scale, scale);
Bitmap thumbnail = transform(matrix, source, width, height,OPTIONS_SCALE_UP | options);
return thumbnail;
所以我的建议是检查您要比较或检查的图片上的getWidth()
和getHeight()
。