From 90c4529d26b76570106508a9e2868c9298e9a8f5 Mon Sep 17 00:00:00 2001 From: Eric Brelsford Date: Wed, 10 Apr 2013 14:19:25 -0400 Subject: [PATCH] processors in PILKit: documentation --- README.rst | 6 ++++++ docs/upgrading.rst | 10 ++++++++++ 2 files changed, 16 insertions(+) diff --git a/README.rst b/README.rst index 5e670de..3b37540 100644 --- a/README.rst +++ b/README.rst @@ -365,6 +365,12 @@ it in your spec's ``processors`` list: format = 'JPEG' options = {'quality': 60} +Note that when you import a processor from ``imagekit.processors``, imagekit +in turn imports the processor from `PILKit`_. So if you are looking for +available processors, look at PILKit. + +.. _`PILKit`: https://github.com/matthewwithanm/pilkit + Admin ----- diff --git a/docs/upgrading.rst b/docs/upgrading.rst index 4efe7c0..2a48a75 100644 --- a/docs/upgrading.rst +++ b/docs/upgrading.rst @@ -112,3 +112,13 @@ and other spec options to ensure that changes to the spec always result in unique file names. See the documentation on `specs`_ for more. .. _`specs`: + + +Processors have moved to PILKit +------------------------------- + +Processors have moved to a separate project: `PILKit`_. You should not have to +make any changes to an IK2 project to use PILKit--it should be installed with +IK3, and importing from ``imagekit.processors`` will still work. + +.. _`PILKit`: https://github.com/matthewwithanm/pilkit