mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 13:50:24 +00:00
- `base`, `crop`, `resize`, and `utils` are now placed in `pilkit` app - remove magic compatibility between `imagekit.processors` and `pilkit.procesors`
12 lines
314 B
Python
12 lines
314 B
Python
from pilkit.processors import *
|
|
|
|
__all__ = [
|
|
# Base
|
|
'ProcessorPipeline', 'Adjust', 'Reflection', 'Transpose',
|
|
'Anchor', 'MakeOpaque',
|
|
# Crop
|
|
'TrimBorderColor', 'Crop', 'SmartCrop',
|
|
# Resize
|
|
'Resize', 'ResizeToCover', 'ResizeToFill', 'SmartResize',
|
|
'ResizeCanvas', 'AddBorder', 'ResizeToFit', 'Thumbnail'
|
|
]
|