# import
from PIL import ImageGrab
# 캡쳐
screen = ImageGrab.grab()
# 캡쳐된 사진의 point좌표의 색상값을 가져옴
color = screen.getpixel(point)
"""
point : (x,y)
color : (r,g,b)
"""
더보기
파이썬 화면 픽셀 색깔 색상 rgb
반응형
'코딩 > Python' 카테고리의 다른 글
Python - Flask - Request (0) | 2021.02.21 |
---|---|
Python - Tkinter - Label (0) | 2021.02.14 |
Python - pyautogui - keyboard (0) | 2021.02.14 |
Python - socket - server (0) | 2021.02.05 |
Python - socket - client (0) | 2021.02.05 |