How can I get the color of a pixel at the location of the cursor? I know how to get the mouses position using MousePosition but I can not figure out how to get the pixel color at that location.
|
|
A C# version: How do I get the colour of a pixel at X,Y using c# ? |
||||
|
|
|
This is actually harder than you would guess. I would look for some example code that already does it, and copy their technique. In the end, the algorithm is going to have to perform these operations:
It sounds simple, but is not easy. |
||
|
|
|
Quick simple very slow but it works. The idea is to copy the screen to a bitmap which can be done using the GDI+ build into the drawing.graphics object. Then simply read the bitmap that it generates. Get pixel is very slow. The best way it to read the image byte array directly.
Enjoy. |
|||
|
|
