mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 05:40:25 +00:00
15 lines
382 B
Python
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 *
|