CarbonCommader is long deprecated. For its time it had all the features I needed - quick colorpicking. But the time had come for a complete overhaul. SimpleColorPicker
Features
-
Control the program with hotkeys
[F8]
to save color. -
Copy the last picked
RGB
value with a click of a button.
Program screenshot:
Snippet for the colorpicking:
Bitmap BMP = new Bitmap(1, 1);
Graphics GFX = Graphics.FromImage(BMP);
GFX.CopyFromScreen(new Point(MousePosition.X, MousePosition.Y), new Point(0, 0), BMP.Size);
Color Pixel = BMP.GetPixel(0, 0);