If i want image_width and image_height for instances of Original to be taken from ResizedImageField, how can i do that?
class Original(models.Model):
image = ResizedImageField(
blank=True, null=True,
verbose_name = _('Original image'),
upload_to = upload_image,
width_field = 'image_width',
height_field = 'image_height',
validators = [dimension_validator],
)
image_width = models.PositiveIntegerField(
blank=True, null=True,
verbose_name = _('Image width'),
editable = False,
default = 0,
)
image_height = models.PositiveIntegerField(
blank=True, null=True,
verbose_name = _('Image height'),
editable = False,
default = 0,
)
class ResizedImageFieldFile(ImageFieldFile):
def save(self, name, content, save=True):
super(ResizedImageFieldFile, self).save(name, content, save)
img = Image.open(self.path)
x1 = img.size[0]
y1 = img.size[-1]
max_width = 800
max_height = 1200
if x1 > max_width and y1 > max_height:
x2 = max_width
y2 = int(float(x2)/float(x1) * y1) - 1
elif x1 > max_width and y1 <= max_height:
x2 = max_width
y2 = int(float(x2)/float(x1) * y1) - 1
elif x1 <= max_width and y1 > max_height:
y2 = max_height
x2 = int(float(y2)/float(y1) * x1) - 1
if x2 > max_width:
x2 = max_width
y2 = int(float(x2)/float(x1) * y1) - 1
elif x1 <= max_width and y1 <= max_height:
y2 = y1
x2 = x1
if y2 != y1 and x2 != x1:
img = img.resize((x2, y2), Image.ANTIALIAS)
img.save(self.path)
def delete(self, save=True):
os.remove(self.path)
super(ResizedImageFieldFile, self).delete(save)
class ResizedImageField(ImageField):
attr_class = ResizedImageFieldFile
def __init__(self, *args, **kwargs):
super(ResizedImageField, self).__init__(*args, **kwargs)
i need them to give proper width and height of image when user selecting area to crop (can't just use overvlow property because of IE):
<table>
<tbody>
<tr>
<td style="max-width: 800px; overflow-x: auto; position: relative">
<img style="position: relative;" width="{{ original.image_width }}" height="{{ original.image_height }}" src="{{ original.image.url }}" id="cropbox" alt="" />
</td>
<td>
<p style="text-align: left; margin-left: 10px;">Your avatar</p>
<div style="width: 180px; height: 180px; margin-left: 10px; margin-bottom: 10px; overflow: hidden;">
<img src="{{ original.image.url }}" id="preview" alt="" />
</div>
</td>
</tr>
</tbody>
</table>