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)