Hi,
Given a .NET Image object, how do I check if it represents a picture that's completely black? (C#)
10x!
Hi,
Given a .NET Image object, how do I check if it represents a picture that's completely black? (C#)
10x!
Convert your image to a Bitmap and use its GetPixel()
-Method to check the color of the pixel at position x, y. If all pixels are black, the image is black.