On Fri, Jan 23, 2009 at 6:55 AM, Andrew Ingram <a...@andrewingram.net>wrote:

>
> 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.
>

http://code.djangoproject.com/ticket/9545

also reports these fields not working, which I found a little mysterious
since the function is tested in the test suite.  Your report provides a clue
that the problem may be specifically with the admin (though the ticket
doesn't mention admin), where (without actually looking at any code) I could
guess the path taken to save the new model with an uploaded image somehow
bypasses however these fields are normally set.  You might want to note in
that ticket how you are encountering this problem in the admin.  The ticket
also notes a custom save method can be used to get around the problem, which
you may want to try if you want to get things working before the root cause
of the problem is identified and fixed.

Karen

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to