Hello.
I am looking for Django application to support ImageField with the following properties:
* JS FIleAPI in Admin (that means file is uploaded once selected and validated before form submit)
* File should have preview (which should be easy to do once FileAPI is used)
* Allow cropping (like with "django-image-cropping")
* File limit to ~ 2 Mb.
There are several apps for some of these requirements, but I wonder if some "ultimate image field" exists for Django which may solve all of them.
Default ImageField seems to be limited.
I only need to use it for Admin, not for Forms.
Ilya.