When designing, there sometimes needs to extract specific informations from the screen.
This tool quickly obtain the following info.
- Pixel Coordinate (useful for quick locating and measurements)
- Pixel Colour in
RGBorHEX code(useful for replicating colours)
demo.mp4
👆Please feel free if my scripts had been useful for your projects. :)
- Run the script
cursor_info.pyorcursor_info.exe - A small box will follow the cursor and highlight the colour at the cursor's pixel
- press the following keys to retrive specific info on the clipboard (may expand functionality in future):
p: pixel coordinate in X,Yh: pixel colour in HEX coder: pixel colour in RGB
- press
ctrl+Vto paste the info somewhere - press
xto close the window
The script requires the following python external libraries.
pyautoguipynputpyperclip
If you do not already have these packages, install them by running the following command:
pip install pyautogui pynput pyperclip
