Python Imaging Library: Difference between revisions

From XPUB & Lens-Based wiki
(New page: = Python Image Library =)
 
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
= Python Image Library =
== Website / Documentation ==
 
* http://www.pythonware.com/products/pil/
* http://www.pythonware.com/library/pil/handbook/index.htm
 
== Tutorials ==
* http://www.pythonforbeginners.com/modules-in-python/how-to-use-the-python-imaging-library/
 
==Installation==
 
=== Installing with pip ===
 
sudo pip install pil
 
=== Debian/Ubuntu ===
<source lang="bash">
sudo apt-get install python-imaging
</source>
 
=== Windows ===
There's a set of windows installers on the main PIL site.
 
=== Gentoo ===
Installing in Gentoo:
<source lang="bash">
emerge imaging
</source>
 
=== Macintosh ===
It depends a lot on the version of Mac OS you are running, but installing [[homebrew]] would be a good idea.
 
== Examples ==
 
Examples:
* [[PyScrapers]]
* [[PyScrapers2]]

Latest revision as of 19:37, 7 November 2013

Website / Documentation

Tutorials

Installation

Installing with pip

sudo pip install pil

Debian/Ubuntu

sudo apt-get install python-imaging

Windows

There's a set of windows installers on the main PIL site.

Gentoo

Installing in Gentoo:

emerge imaging

Macintosh

It depends a lot on the version of Mac OS you are running, but installing homebrew would be a good idea.

Examples

Examples: