How I Can tell if that image(pictureBox1.Image) is the same as image from Properties.Resources.bug1 ???
I read that i cant do it in that form :
if (pictureBox1.Image == Properties.Resources.bug1)
{
MessageBox.Show("here");
}
I found this "You need your own Image comparison algorithm if you need to compare it. You'd do it by comparing pixel by pixel."
so what that mean, How I can do it properly??