I'm pleased to announce a new project, django-stdimage, that provides a new image field with many improvements respect to Django's core ImageField.
Features of StdImageField:
-
Here you've an example of usage:
from django.db import models
from stdimage import StdImageField
class MyClass(models.Model):
my_image = StdImageField(upload_to='path/to/img', blank=True, \
size=(640, 480), thumbnail_size=(100, 100, True))
If a file called "uploaded_file.png" is uploaded for object id 34, then result will be:
-
Also it will appear a check-box for deleting when using admin.