image = models.ImageField(upload_to='photos', height_field=60, width_field=60, max_length=100)
class MyModel(models.Model):
img_width = models.PositiveIntegerField(null=True)
img_height = models.PositiveIntegerField(null=True)
image = models.ImageField(upload_to='photos', height_field='img_height', width_field='img_width', max_length=100)