django-imagekit/imagekit/processors/__init__.py

16 lines
382 B
Python
Raw Normal View History

2012-11-06 04:34:32 +00:00
# flake8: noqa
2011-10-31 14:12:03 +00:00
"""
Imagekit image processors.
2009-01-04 17:38:06 +00:00
A processor accepts an image, does some stuff, and returns the result.
Processors can do anything with the image you want, but their responsibilities
should be limited to image manipulations--they should be completely decoupled
from both the filesystem and the ORM.
2009-01-04 17:38:06 +00:00
"""
from .base import *
from .crop import *
from .resize import *