mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 13:50:24 +00:00
8 lines
215 B
Python
8 lines
215 B
Python
|
|
import warnings
|
||
|
|
|
||
|
|
from pilkit.processors.crop import *
|
||
|
|
|
||
|
|
warnings.warn('imagekit.processors.crop is deprecated use imagekit.processors instead', DeprecationWarning)
|
||
|
|
|
||
|
|
__all__ = ['TrimBorderColor', 'Crop', 'SmartCrop']
|