Hi I am trying to use the height_field and width_field arguments for ImageField to auto-populate the dimension of images to other fields, but it doesn't seem to be working.
I've duplicated the usage that's in Django's test suite (which incidentally is the only mention I can find that you have to pass the fields as strings rather than passing the fields themselves), and I've produced the following model for testing this (after it didn't work on my regular model). class Test(models.Model): image = models.ImageField(upload_to='banners',height_field='image_height',width_field='image_width') image_width = models.PositiveSmallIntegerField(editable=False) image_height = models.PositiveSmallIntegerField(editable=False) But when I try to upload the Image I get the following exception: Exception Type: IntegrityError at /admin/banners/test/add/ Exception Value: (1048, "Column 'image_width' cannot be null") If I allow the image_width and image_height fields to be Null, the image itself gets uploaded fine but the dimension fields don't get populated. I'm on Mac OSX 10.5 and I'm using the very latest revision of trunk. PIL is installed and working. Regards, Andrew Ingram --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---