本文介绍了如何检查是否一个位图是在Android空(空白)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我怎么能检查是否位图
对象是完全空白的,即其所有像素都是透明的,不会对每个像素的xy循环?
How can I check if a Bitmap
object is completely blank, i.e. all its pixels are transparent, without a x-y loop on every pixel?
推荐答案
您可以检查您的Bitmap实例(在本例中 MYBITMAP
)对空单有:
You can check your Bitmap instance (in the example myBitmap
) against an empty one with:
Bitmap emptyBitmap = Bitmap.createBitmap(myBitmap.getWidth(), myBitmap.getHeight(), myBitmap.getConfig());
if (myBitmap.sameAs(emptyBitmap)) {
// myBitmap is empty/blank
}
这篇关于如何检查是否一个位图是在Android空(空白)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!