django-imagekit/imagekit/processors/__init__.py
2012-02-18 00:20:44 -05:00

13 lines
366 B
Python

"""
Imagekit image processors.
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.
"""
from .base import *
from .crop import *
from .resize import *