mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 13:50:24 +00:00
29 lines
1.1 KiB
Python
29 lines
1.1 KiB
Python
from django.forms import ImageField
|
|
from ..specs import SpecHost
|
|
from ..utils import generate
|
|
|
|
|
|
class ProcessedImageField(ImageField, SpecHost):
|
|
|
|
def __init__(self, processors=None, format=None, options=None,
|
|
autoconvert=True, spec_id=None, spec=None, *args, **kwargs):
|
|
|
|
if spec_id is None:
|
|
# Unlike model fields, form fields are never told their field name.
|
|
# (Model fields are done so via `contribute_to_class()`.) Therefore
|
|
# we can't really generate a good spec id automatically.
|
|
raise TypeError('You must provide a spec_id')
|
|
|
|
SpecHost.__init__(self, processors=processors, format=format,
|
|
options=options, autoconvert=autoconvert, spec=spec,
|
|
spec_id=spec_id)
|
|
super(ProcessedImageField, self).__init__(*args, **kwargs)
|
|
|
|
def clean(self, data, initial=None):
|
|
data = super(ProcessedImageField, self).clean(data, initial)
|
|
|
|
if data:
|
|
spec = self.get_spec(source=data)
|
|
data = generate(spec)
|
|
|
|
return data
|