I'm trying to learn pillow 2.0.0 for python, but honestly I have no idea where to start, since I can't find any tutorials or docs, and the one here is badly structured, it only describes the modules one by one, so I can't get into it.
Do you have any links to:
Does it makes any difference I'm using python 3.3 on a windows 7 ?
Check pillow Version Windows To check which version of pillow is installed, use pip show pillow or pip3 show pillow in your Windows CMD, command line, or PowerShell.
Opening and Displaying the imageThe Pillow module provides the open() and show() function to read and display the image respectively. For displaying the image Pillow first converts the image to a . png format (on Windows OS) and stores it in a temporary buffer and then displays it.
To load the image, we simply import the image module from the pillow and call the Image. open(), passing the image filename. Instead of calling the Pillow module, we will call the PIL module as to make it backward compatible with an older module called Python Imaging Library (PIL).
Step 2: To check if PIL is successfully installed, open up the python terminal by typing python3 in the terminal. This will open up the python3 interactive console now type the following command to check the current version of the PIL. This will output the currently installed version of the PIL.
Pillow is a fork of PIL and use from PIL functions and classes. You can search PIL tutorial!
installation Pillow (you can install pip or easy_install in windows then write pip install pillow
or easy_install pillow
)
http://effbot.org/imagingbook/introduction.htm
http://www.geeks3d.com/20100930/tutorial-first-steps-with-pil-python-imaging-library/
http://nadiana.com/pil-tutorial-basic-advanced-drawing
http://nadiana.com/pil-tutorial-how-create-button-generator
http://pythonvision.org/basic-tutorial
http://python.developpez.com/cours/pilhandbook/php/introduction.php
http://www.riisen.dk/dop/pil.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With