C#检查图片是否空白图片
///
/// 检查图片是否空白图片
///
/// Image
/// 是否空白图片
private bool CheckTransparentImg(Image img)
{
bool blnIsTransparent = false;
//加载位图
Bitmap bitMap = new Bitmap(img);
//图片总像素
int intAll = img.Height * img.Width;
int intCount = 0;
//按像素遍历
for (int intY = 0; intY < img.Height; intY++)
{
for (int intX = 0; intX < img.Width; intX++)
{
Color color = bitMap.GetPixel(intX, intY);
//无任何颜色视为透明
if (color.A == 0 && color.R == 0 && color.G == 0 && color.B == 0)
{
intCount += 1;
}
}
}
//释放资源
bitMap.Dispose();
double dblScale = intCount / intAll * 100;
if (dblScale == 100)
{
blnIsTransparent = true;
}
return blnIsTransparent;
}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
暂时没有评论,来抢沙发吧~