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

from PIL import Image

img = Image.open('hand.png')

img.show()

https://www.youtube.com/watch?v=_H9uPRJWMNk

Comments

Popular posts from this blog

Python 3.4 - Caesar Cipher

UML - Use Case Diagram