fix: fixed sizing issue

This commit is contained in:
Rushil Umaretiya 2021-09-29 10:53:44 -04:00
parent 4d6959050b
commit d329cf7b48

View File

@ -23,7 +23,7 @@ class Profile(models.Model):
if bool(self.image):
img = Image.open(self.image.path)
frame = Image.open(settings.MEDIA_ROOT + "/frame.png")
img.thumbnail((300, 300))
img.thumbnail((500, 500))
width, height = img.size
frame.thumbnail((width, height))
img.paste(frame, (0,0), frame)