这是我的代码:
def save(self):
if self.pk is None:
self.original_name = self.image.name[:50]
if (self.image.width > 800 or self.image.height > 800):
ratio = float(self.image.width) / float(self.image.height)
if ratio > 1:
target_size=(800, int(800/ratio))
else:
target_size=(int(800*ratio),800)
HOW IS THE SINTAXIS HERE ??
self.image.how_to_resize_original(target_size) ????????????????????
super(ImageUpload, self).save()
非常感谢!!!!
答案 0 :(得分:0)
您是否考虑过
https://github.com/un1t/django-resized
models.py
from django_resized import ResizedImageField
class MyModel(models.Model):
...
image = ResizedImageField(max_width=500, max_height=300, upload_to='whatever')