Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Color Picker
#1
One of my most useful little ten minute programs that I've came up with for a while, though this is for Windows Only:

Code: (Select All)
Dim WinMse As POINTAPI
Type POINTAPI: As Long X_Pos, Y_Pos: End Type

Declare Dynamic Library "User32"
Function GetWindowLongA& (ByVal hwnd As Long, ByVal nIndex As Long)
Function SetWindowLongA& (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long)
Function GetAsyncKeyState% (ByVal vkey As Long)
Function GetCursorPos (lpPoint As POINTAPI)
End Declare
Width 12, 1 'large enough to hold our color value in hex
GWL_STYLE = -16
ws_border = &H800000
WS_VISIBLE = &H10000000
_Title "Color Picker"
hwnd& = _WindowHandle
winstyle& = GetWindowLongA&(hwnd&, GWL_STYLE)
_Delay .2
a& = SetWindowLongA&(hwnd&, GWL_STYLE, winstyle& And WS_VISIBLE)

Color 15
Do
_Limit 30
z = GetCursorPos(WinMse)
_ScreenMove WinMse.X_Pos + 1, WinMse.Y_Pos + 1
tempimage = _ScreenImage
Cls , 0
_Source tempimage: Print Hex$(Point(WinMse.X_Pos, WinMse.Y_Pos));: _Source 0
_FreeImage tempimage
_Display
Loop Until GetAsyncKeyState(1) Or GetAsyncKeyState(2) Or GetAsyncKeyState(27)
System

Run it. Move the mouse around your screen. I think you can tell fairly quickly and easily what it does for you.
Reply


Messages In This Thread
Color Picker - by SMcNeill - 01-22-2025, 03:53 PM
RE: Color Picker - by Pete - 01-22-2025, 07:33 PM
RE: Color Picker - by bplus - 01-22-2025, 08:56 PM
RE: Color Picker - by grymmjack - 01-22-2025, 09:41 PM
RE: Color Picker - by SMcNeill - 01-22-2025, 10:41 PM
RE: Color Picker - by Pete - 01-22-2025, 11:58 PM
RE: Color Picker - by SMcNeill - 01-23-2025, 12:03 AM
RE: Color Picker - by Pete - 01-23-2025, 12:50 AM
RE: Color Picker - by Adam99 - 01-23-2025, 09:50 PM
RE: Color Picker - by bplus - 01-23-2025, 10:06 PM
RE: Color Picker - by SMcNeill - 01-24-2025, 01:13 AM
RE: Color Picker - by Pete - 01-23-2025, 10:57 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Closest Color Match SMcNeill 5 295 01-18-2026, 07:02 PM
Last Post: SMcNeill
  Color Picker TSR SMcNeill 5 1,382 01-24-2025, 07:31 PM
Last Post: Pete
  Color Fetch Tool SMcNeill 0 636 11-25-2022, 11:31 AM
Last Post: SMcNeill
  Convert 32-bit image to 256 color SMcNeill 0 952 05-01-2022, 05:45 AM
Last Post: SMcNeill
  ASCII Picker SMcNeill 0 581 04-22-2022, 03:11 AM
Last Post: SMcNeill

Forum Jump:


Users browsing this thread: 1 Guest(s)