找传奇、传世资源到传世资源站!

C# DetectColor 判斷圖片是彩色還是黑白

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

判斷圖片是彩色還是黑白
C# DetectColor 判斷圖片是彩色還是黑白 C#图形和图像处理-第1张
C# DetectColor 判斷圖片是彩色還是黑白 C#图形和图像处理-第2张 private int CountWhite()
        {
            Bitmap bmp = (Bitmap)this.pictureBox1.Image;
            Color color;
            int iTotal = bmp.Height * bmp.Width, count = 0;

            for (int x = 0; x < bmp.Width - 1; x )
            {
                for (int y = 0; y < bmp.Height - 1; y )
                {
                    color = bmp.GetPixel(x, y);

                    if (color.R == 255 && color.G == 255 && color.B == 255)
                    {
                        count ;
                    }
                }
            }

            return count;
        }

        private int CountBlack()
        {
            Bitmap bmp = (Bitmap)this.pictureBox1.Image;
            Color color;
            int iTotal = bmp.Height * bmp.Width, count = 0;

            for (int x = 0; x < bmp.Width - 1; x )
            {
                for (int y = 0; y < bmp.Height - 1; y )
                {
                    color = bmp.GetPixel(x, y);

                    if (color.R == 0 && color.G == 0 && color.B == 0)
                    {
                        count ;
                    }
                }
            }

            return count;
        }

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复