No, everything is fine. Once you uploaded a file, you can call
image.width and image.height (where image is an instance of Image).
If you are using ModelForms, you can set editable=False as a parameter
for width and height.
image = models.ImageField(upload_to='images',
height_field='hei
Assume i have the following:
class Image(models.Model):
image = models.ImageField(upload_to="path/to",
width_field="width", height_field="height"
do i create new Integer fields there for width and height? With this
i can do things like:
>>> Image.objects.get(pk=1).image.width
However this
2 matches
Mail list logo