■ PngImageFile 클래스의 getpixel 메소드를 사용해 픽셀 색상을 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from PIL import Image pngImageFile = Image.open("sample.png") colorTuple = pngImageFile.getpixel((100, 100)) print(colorTuple) """ (129, 151, 190) """ |