django-imagekit/imagekit/processors/__init__.py
2012-11-05 23:34:32 -05:00

15 lines
382 B
Python

# flake8: noqa
"""
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 *