Код: Выделить всё
def save(self, *args, **kwargs):
super().save()
img = Image.open(self.profile_picture.path)
img.show()
img_resized = img.resize((100, 100), Image.Resampling.LANCZOS)
img_resized.save()
Подробнее здесь: https://stackoverflow.com/questions/793 ... t-resizing
Мобильная версия