django-imagekit/imagekit/generatorlibrary.py

14 lines
498 B
Python
Raw Permalink Normal View History

2012-12-07 04:48:09 +00:00
from .registry import register
from .processors import Thumbnail as ThumbnailProcessor
from .specs import ImageSpec
class Thumbnail(ImageSpec):
def __init__(self, width=None, height=None, anchor=None, crop=None, upscale=None, **kwargs):
2012-12-07 04:48:09 +00:00
self.processors = [ThumbnailProcessor(width, height, anchor=anchor,
crop=crop, upscale=upscale)]
2012-12-07 04:48:09 +00:00
super(Thumbnail, self).__init__(**kwargs)
register.generator('imagekit:thumbnail', Thumbnail)