processors in PILKit: documentation

This commit is contained in:
Eric Brelsford 2013-04-10 14:19:25 -04:00
parent 261f164127
commit 90c4529d26
2 changed files with 16 additions and 0 deletions

View file

@ -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
-----

View file

@ -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