我要求在具有高度属性的文件夹中验证大量图像(jpg,tif,png)。但是彩色图像和灰度图像的验证规则不同。
但我的问题是
如何在c#中识别图像是灰度图像还是彩色图像?
至少从哪里开始?
答案 0 :(得分:2)
bool IsGreyScale(Bitmap YourCurrentBitmap)
{
Color c;
for(int i=0; i < YourCurrentBitmap.Width; i++)
for(int j=0; j < YourCurrentBitmap.Height; j++)
{
c = YourCurrentBitmap.GetPixel(i,j);
if(!(c.R == c.G == c.B)) return false;
}
return true;
}
但这种方法相对较慢。