Okay, I am looking for a function or something that will read the color of a certain pixel on my monitor, and when that color is detected, another function will be enabled. I figure using RGB. All help appreciated. Thank You.
|
|
This is the most efficient: It grabs a pixel at the location of the cursor, and doesn't rely on only having one monitor.
Now, obviously, you don't have to use the cursor's current location, but this is the general idea. EDIT: Given the above
You can wrap that in a Thread if you want, or execute it from a Console application. "Whatever suits your fancy," I guess. |
|||||||||||||
|
|
As far as I know the easiest way to do this is to:
Edit There is probably no way to "wait" until the pixel changes to a certain color. Your program will probably have to just loop and check it every so often until it sees the color. For example:
EDIT 2 Here is some sample code you can modify. This code just changes the color of a label based on the current color in a given pixel. This code avoids the handle leak mentioned.
} |
|||||||||
|
|
Please check this two different functions I have used in one of my previous projects : 1) This function takes snapshot of Desktop
2) This function takes an image in input and calculates RGB average of pixel range given.
This two functions together might solve your problem. Happy Coding :) EDIT : Please note that GetPixel is very slow function. I will think twice befor using it. |
|||
|
|