Answers for "what is a pil image pythob"

3

PIL image example

>>> from PIL import Image
>>> im = Image.open("image.jpg")
>>> im.show()
Posted by: Guest on June-12-2020
1

what is imageTk in pil python

The ImageTk module contains support to create 
and modify Tkinter BitmapImage and PhotoImage objects 
from PIL images. ... This can be used everywhere Tkinter expects an image object. The given image must have mode “1”.
Posted by: Guest on May-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language