From 4146ed7db3acd71dbc102e0a37988572219742ca Mon Sep 17 00:00:00 2001 From: John Del Rosario Date: Tue, 14 Feb 2012 16:27:27 +0800 Subject: [PATCH] Draft for PIL in new imaging section under Scenarios. --- docs/contents.rst.inc | 1 + docs/scenarios/imaging.rst | 44 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 docs/scenarios/imaging.rst diff --git a/docs/contents.rst.inc b/docs/contents.rst.inc index 6ee37eef8..5af8c0fcf 100644 --- a/docs/contents.rst.inc +++ b/docs/contents.rst.inc @@ -53,6 +53,7 @@ different scenarios. scenarios/ci scenarios/speed scenarios/scientific + scenarios/imaging Shipping Great Code diff --git a/docs/scenarios/imaging.rst b/docs/scenarios/imaging.rst new file mode 100644 index 000000000..3d8648708 --- /dev/null +++ b/docs/scenarios/imaging.rst @@ -0,0 +1,44 @@ +================== +Image Manipulation +================== + +.. todo:: + Add introduction about image manipulation and its Python libraries. + +Python Imaging Library +---------------------- + +The `Python Imaging Library `_, or PIL +for short, is *the* library for image manipulation in Python. + +It works with Python 1.5.2 and above, including 2.5, 2.6 and 2.7. Unfortunately, +it doesn't work with 3.0+ yet. + +Installation +~~~~~~~~~~~~ + +PIL has a reputation of not being very straightforward to install. Listed below +are installation notes on various systems. + +Installing on Linux +~~~~~~~~~~~~~~~~~~~ + +Ubuntu 11.04 +```````````` + +.. todo:: + Notes on installing on Ubuntu 11.04 + +Installing on Mac OS X +~~~~~~~~~~~~~~~~~~~~~~ + +.. todo:: + Notes on installing on Mac OS X + +Installing on Windows +~~~~~~~~~~~~~~~~~~~~~ + +.. todo:: + Notes on installing on Windows machines + +