Python 3.4 - Pillow
Pillow: "It adds support for opening, manipulating, and saving many different image file formats."
http://www.pythonforbeginners.com/gui/how-to-use-pillow
https://www.youtube.com/watch?v=_H9uPRJWMNk
http://www.pythonforbeginners.com/gui/how-to-use-pillow
from PIL import Image img = Image.open('hand.png') img.show()
https://www.youtube.com/watch?v=_H9uPRJWMNk
Comments