Answers for "pil get image pixels"

8

pil get image size

from PIL import Image

im = Image.open('whatever.png')
width, height = im.size
Posted by: Guest on April-01-2020
2

width and height of pil image

image = PIL.Image.open("sample.png")
width, height = image.size
Posted by: Guest on January-15-2021
0

python pil get pixel

im = Image.open('image.gif')
rgb_im = im.convert('RGB')
r, g, b = rgb_im.getpixel((1, 1))

print(r, g, b)
>>> (65, 100, 137)
Posted by: Guest on March-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language